summary refs log tree commit diff
path: root/src/models/Channel.ts
blob: 81fec185441a27ff18e8efeddca3aed293ef9059 (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;
	}[];
}