mirror of
https://github.com/danbulant/discord.js
synced 2026-05-27 14:02:02 +00:00
typings(Guild): mark afkChannel* & applicationID as nullable (#3805)
This commit is contained in:
parent
c4c6ad4a63
commit
f85230812f
1 changed files with 3 additions and 3 deletions
6
typings/index.d.ts
vendored
6
typings/index.d.ts
vendored
|
|
@ -666,10 +666,10 @@ declare module 'discord.js' {
|
|||
private _sortedChannels(channel: Channel): Collection<Snowflake, GuildChannel>;
|
||||
private _memberSpeakUpdate(user: Snowflake, speaking: boolean): void;
|
||||
|
||||
public readonly afkChannel: VoiceChannel;
|
||||
public afkChannelID: Snowflake;
|
||||
public readonly afkChannel: VoiceChannel | null;
|
||||
public afkChannelID: Snowflake | null;
|
||||
public afkTimeout: number;
|
||||
public applicationID: Snowflake;
|
||||
public applicationID: Snowflake | null;
|
||||
public available: boolean;
|
||||
public banner: string | null;
|
||||
public channels: GuildChannelManager;
|
||||
|
|
|
|||
Loading…
Reference in a new issue