mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-15 10:58:18 +00:00
fix(StageInstance): Ensure discoverableDisabled is not undefined (#6395)
This commit is contained in:
Vendored
+1
-1
@@ -1670,7 +1670,7 @@ export class StageInstance extends Base {
|
||||
public channelId: Snowflake;
|
||||
public topic: string;
|
||||
public privacyLevel: PrivacyLevel;
|
||||
public discoverableDisabled: boolean;
|
||||
public discoverableDisabled: boolean | null;
|
||||
public readonly channel: StageChannel | null;
|
||||
public readonly guild: Guild | null;
|
||||
public edit(options: StageInstanceEditOptions): Promise<StageInstance>;
|
||||
|
||||
Reference in New Issue
Block a user