summary refs log tree commit diff
path: root/dist/models/Channel.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'dist/models/Channel.d.ts')
-rw-r--r--dist/models/Channel.d.ts19
1 files changed, 19 insertions, 0 deletions
diff --git a/dist/models/Channel.d.ts b/dist/models/Channel.d.ts
new file mode 100644
index 00000000..f19071ef
--- /dev/null
+++ b/dist/models/Channel.d.ts
@@ -0,0 +1,19 @@
+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;
+    }[];
+}