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

export const LazyRequest = {
	guild_id: String,
	$activities: Boolean,
	$channels: Object,
	$typing: Boolean,
	$threads: Boolean,
	$members: [] as any[],
};