UNPKG

331 BTypeScriptView Raw
1/**
2 * This is a fallback type
3 * to make BLAPI compatible with typescript code that does not use discord.js
4 */
5export class DiscordJSClientFallback {
6 user?: {
7 id: string;
8 [k: string]: any;
9 };
10 shard?: {
11 id: number;
12 count: number;
13 [k: string]: any;
14 };
15 guilds: Map<string, any>;
16 [k: string]: any;
17}