summary refs log tree commit diff
path: root/src/models/Guild.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-11 20:44:12 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-11 20:44:12 +0100
commit1f7ebe256e00583bf0888d3f9e32ea1b8ef1b237 (patch)
tree5906b6dcc83593a8dae7d88e62fa62680c4dcda9 /src/models/Guild.ts
parent:sparkles: Event model (diff)
downloadserver-1f7ebe256e00583bf0888d3f9e32ea1b8ef1b237.tar.xz
:sparkles: updated other models
Diffstat (limited to 'src/models/Guild.ts')
-rw-r--r--src/models/Guild.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/models/Guild.ts b/src/models/Guild.ts

index 7e6fa614..7cf3b193 100644 --- a/src/models/Guild.ts +++ b/src/models/Guild.ts
@@ -1,4 +1,4 @@ -import { Channel } from "./Channel"; +import { GuildChannel } from "./Channel"; import { Emoji } from "./Emoji"; import { Member } from "./Member"; import { Role } from "./Role"; @@ -8,13 +8,13 @@ export interface Guild { afk_timeout?: number; application_id?: bigint; banner?: string; - channels: Channel[]; + channels: GuildChannel[]; default_message_notifications?: number; description?: string; discovery_splash?: string; emojis: Emoji[]; explicit_content_filter?: number; - features: []; + features: string[]; icon?: string; id: bigint; // joined_at?: number; \n // owner?: boolean; // ! member specific should be removed