typing: add CallOptions

This commit is contained in:
March 7th
2022-10-24 23:29:09 +07:00
parent 95ef7a2b41
commit 1c0aefd7ec
3 changed files with 16 additions and 15 deletions

10
typings/index.d.ts vendored
View File

@@ -1198,13 +1198,19 @@ export class DMChannel extends TextBasedChannelMixin(Channel, [
public flags: Readonly<ChannelFlags>;
public fetch(force?: boolean): Promise<this>;
public readonly voiceAdapterCreator: InternalDiscordGatewayAdapterCreator;
public call(options?: object): Promise<VoiceConnection>;
public call(options?: CallOptions): Promise<VoiceConnection>;
public sync(): undefined;
public readonly shard: WebSocketShard;
public readonly voiceUsers: Collection<Snowflake, User>;
public readonly voiceConnection?: VoiceConnection;
}
export interface CallOptions {
selfDeaf?: boolean;
selfMute?: boolean;
ring?: boolean;
}
export class Emoji extends Base {
protected constructor(client: Client, emoji: RawEmojiData);
public animated: boolean | null;
@@ -2380,7 +2386,7 @@ export class PartialGroupDMChannel extends TextBasedChannelMixin(Channel, [
public delete(slient?: boolean): Promise<this>;
public setOwner(user: UserResolvable): Promise<PartialGroupDMChannel>;
public readonly voiceAdapterCreator: InternalDiscordGatewayAdapterCreator;
public call(options?: object): Promise<VoiceConnection>;
public call(options?: CallOptions): Promise<VoiceConnection>;
public sync(): undefined;
public readonly shard: WebSocketShard;
public readonly voiceUsers: Collection<Snowflake, User>;