summary refs log tree commit diff
path: root/dist/server-util/src/models/Channel.d.ts
blob: f19071ef83facd11ab538b955f43688369230f86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
    }[];
}