mirror of
https://github.com/danbulant/discord.js
synced 2026-05-27 14:02:02 +00:00
fix(typings): GuildChannel#parentID is nullable (#3508)
This commit is contained in:
parent
a4f06bdffd
commit
e936f071c0
1 changed files with 1 additions and 1 deletions
2
typings/index.d.ts
vendored
2
typings/index.d.ts
vendored
|
|
@ -794,7 +794,7 @@ declare module 'discord.js' {
|
|||
public readonly members: Collection<Snowflake, GuildMember>;
|
||||
public name: string;
|
||||
public readonly parent: CategoryChannel | null;
|
||||
public parentID: Snowflake;
|
||||
public parentID: Snowflake | null;
|
||||
public permissionOverwrites: Collection<Snowflake, PermissionOverwrites>;
|
||||
public readonly permissionsLocked: boolean | null;
|
||||
public readonly position: number;
|
||||
|
|
|
|||
Loading…
Reference in a new issue