dbots
Version:
Discord bot list poster and stats retriever
14 lines (13 loc) • 420 B
TypeScript
import { Shard } from '../../Utils/Constants';
import { ClientFiller } from '../ClientFiller';
/**
* Represents the client filler for discord.io clients.
* @private
*/
export default class DiscordIO extends ClientFiller {
get userCount(): any;
get serverCount(): number | undefined;
get voiceConnections(): number | undefined;
get clientID(): string | undefined;
get shard(): Shard | undefined;
}