summary refs log tree commit diff
path: root/src/models/Channel.ts
diff options
context:
space:
mode:
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; - }[]; -}