summary refs log tree commit diff
path: root/src/schema/LazyRequest.ts
blob: b8c51431bcfff60a7af33dc6cc038735c4dab2ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export interface LazyRequest {
	activities: boolean;
	channels: Record<string, [number, number]>;
	guild_id: string;
	threads: boolean;
	typing: true;
}

export const LazyRequest = {
	activities: Boolean,
	channels: Object,
	guild_id: String,
	threads: Boolean,
	typing: Boolean,
};