detritus-client
Version:
A Typescript NodeJS library to interact with Discord's API, both Rest and Gateway.
18 lines (17 loc) • 537 B
TypeScript
import { BaseClientCollection, BaseClientCollectionOptions } from './basecollection';
import { VoiceCall } from '../structures/voicecall';
/**
* @category Collection Options
*/
export interface VoiceCallsOptions extends BaseClientCollectionOptions {
}
/**
* VoiceCalls Collection, DM VoiceCalls
* (Bots cannot fill this)
* @category Collections
*/
export declare class VoiceCalls extends BaseClientCollection<string, VoiceCall> {
defaultKey: string;
insert(call: VoiceCall): void;
get [Symbol.toStringTag](): string;
}