summary refs log tree commit diff
path: root/src/models/Channel.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-06 10:08:59 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-06 10:08:59 +0100
commitd02b0591c63997a3e1e055f03607c374c2254fbf (patch)
treee37a254f8969f0eaecfd696d49e6372bd0f17ec9 /src/models/Channel.ts
parentupdate missing-native-js-functions version (diff)
downloadserver-d02b0591c63997a3e1e055f03607c374c2254fbf.tar.xz
moved models to server-util
Diffstat (limited to 'src/models/Channel.ts')
-rw-r--r--src/models/Channel.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/models/Channel.ts b/src/models/Channel.ts
deleted file mode 100644

index 81fec185..00000000 --- a/src/models/Channel.ts +++ /dev/null
@@ -1,19 +0,0 @@ -export interface Channel { - id: bigint; - guild_id: bigint; - last_message_id: string; - last_pin_timestamp: string; - name: string; - nsfw: boolean; - parent_id: bigint; - position: number; - rate_limit_per_user: number; - topic: string | null; - type: number; - permission_overwrites: { - allow: bigint; - deny: bigint; - id: bigint; - type: number; - }[]; -}