From d02b0591c63997a3e1e055f03607c374c2254fbf Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sat, 6 Feb 2021 10:08:59 +0100 Subject: moved models to server-util --- src/models/Channel.ts | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/models/Channel.ts (limited to 'src/models/Channel.ts') 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; - }[]; -} -- cgit 1.5.1