mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-26 11:56:30 +00:00
18 lines
333 B
TypeScript
18 lines
333 B
TypeScript
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[],
|
|
};
|