Fix Typos
Co-Authored-By: yky4589 <8479056+yky4589@users.noreply.github.com> Co-Authored-By: Choi Minseo <minseo0388@outlook.com> Co-Authored-By: Aki <akiacode@users.noreply.github.com>
This commit is contained in:
parent
599997414b
commit
21b8954a7f
5 changed files with 5 additions and 13 deletions
|
@ -1,4 +1,4 @@
|
|||
import { GatewayOpcodes } from '../types/gatewayTypes.ts'
|
||||
import { GatewayOpcodes } from '../types/gatewayTypes'
|
||||
|
||||
/**
|
||||
* Gateway response from Discord.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
interface Invite {
|
||||
code: string
|
||||
guild?: any //guild object
|
||||
channel: any //channel object
|
||||
guild?: Guild
|
||||
channel: Channel
|
||||
inviter?: User
|
||||
target_user?: User
|
||||
target_user_type?: number
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
// https://discord.com/developers/docs/topics/permissions#permissions-bitwise-permission-flags
|
||||
// 귀하는 해갈
|
||||
// 그렇습니다
|
||||
|
||||
//이거 필요한건가 -와갈드- -UnderC-
|
||||
|
||||
enum PermissionFlags {
|
||||
CREATE_INSTANT_INVITE = 0x00000001,
|
||||
|
|
|
@ -3,7 +3,7 @@ interface PresenceUpdate {
|
|||
guild_id: string
|
||||
status: string
|
||||
activities: Activity
|
||||
client_status:
|
||||
client_status: ClientStatus
|
||||
}
|
||||
|
||||
interface ClientStatus {
|
||||
|
@ -66,7 +66,3 @@ enum ActivityFlags {
|
|||
SYNC = 1 << 4,
|
||||
PLAY = 1 << 5
|
||||
}
|
||||
|
||||
// channel 에서 message 부분 하삼 ㄳ
|
||||
//시1 오늘 7교시 수업안듣고 이거 ㅋㅋ 에바 온라인수업이라 ㅆㄱㄴ
|
||||
//나도 한다 디코에서 알려주셈 뭐하면되는지
|
|
@ -8,6 +8,6 @@ interface Template {
|
|||
created_at: string
|
||||
updated_at: string
|
||||
source_guild_id: string
|
||||
serialized_source_guild: any //guild object
|
||||
serialized_source_guild: Guild
|
||||
is_dirty: boolean | undefined
|
||||
}
|
Loading…
Reference in a new issue