diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-02-05 22:01:01 +0100 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-02-05 22:01:01 +0100 |
commit | ea41892fef208b10c1bb322de7683c39ebab3dd5 (patch) | |
tree | f26559c73196591ac0338a21908a25c806276a7a /dist/models/Channel.d.ts | |
parent | Move Models/Schemas to server-util (diff) | |
download | server-ea41892fef208b10c1bb322de7683c39ebab3dd5.tar.xz |
:wrench: build
Diffstat (limited to 'dist/models/Channel.d.ts')
-rw-r--r-- | dist/models/Channel.d.ts | 19 |
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; + }[]; +} |