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.
|
* Gateway response from Discord.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
interface Invite {
|
interface Invite {
|
||||||
code: string
|
code: string
|
||||||
guild?: any //guild object
|
guild?: Guild
|
||||||
channel: any //channel object
|
channel: Channel
|
||||||
inviter?: User
|
inviter?: User
|
||||||
target_user?: User
|
target_user?: User
|
||||||
target_user_type?: number
|
target_user_type?: number
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
// https://discord.com/developers/docs/topics/permissions#permissions-bitwise-permission-flags
|
// https://discord.com/developers/docs/topics/permissions#permissions-bitwise-permission-flags
|
||||||
// 귀하는 해갈
|
|
||||||
// 그렇습니다
|
|
||||||
|
|
||||||
//이거 필요한건가 -와갈드- -UnderC-
|
|
||||||
|
|
||||||
enum PermissionFlags {
|
enum PermissionFlags {
|
||||||
CREATE_INSTANT_INVITE = 0x00000001,
|
CREATE_INSTANT_INVITE = 0x00000001,
|
||||||
|
|
|
@ -3,7 +3,7 @@ interface PresenceUpdate {
|
||||||
guild_id: string
|
guild_id: string
|
||||||
status: string
|
status: string
|
||||||
activities: Activity
|
activities: Activity
|
||||||
client_status:
|
client_status: ClientStatus
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ClientStatus {
|
interface ClientStatus {
|
||||||
|
@ -66,7 +66,3 @@ enum ActivityFlags {
|
||||||
SYNC = 1 << 4,
|
SYNC = 1 << 4,
|
||||||
PLAY = 1 << 5
|
PLAY = 1 << 5
|
||||||
}
|
}
|
||||||
|
|
||||||
// channel 에서 message 부분 하삼 ㄳ
|
|
||||||
//시1 오늘 7교시 수업안듣고 이거 ㅋㅋ 에바 온라인수업이라 ㅆㄱㄴ
|
|
||||||
//나도 한다 디코에서 알려주셈 뭐하면되는지
|
|
|
@ -8,6 +8,6 @@ interface Template {
|
||||||
created_at: string
|
created_at: string
|
||||||
updated_at: string
|
updated_at: string
|
||||||
source_guild_id: string
|
source_guild_id: string
|
||||||
serialized_source_guild: any //guild object
|
serialized_source_guild: Guild
|
||||||
is_dirty: boolean | undefined
|
is_dirty: boolean | undefined
|
||||||
}
|
}
|
Loading…
Reference in a new issue