mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 13:14:06 +01:00
20 lines
412 B
TypeScript
20 lines
412 B
TypeScript
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;
|
|
}[];
|
|
}
|