From e936f071c04557e7349ea193de3a17e1dc963562 Mon Sep 17 00:00:00 2001 From: Souji Date: Wed, 2 Oct 2019 14:26:42 +0200 Subject: [PATCH] fix(typings): GuildChannel#parentID is nullable (#3508) --- typings/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index cb08e2ffe..0e3e95b3c 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -794,7 +794,7 @@ declare module 'discord.js' { public readonly members: Collection; public name: string; public readonly parent: CategoryChannel | null; - public parentID: Snowflake; + public parentID: Snowflake | null; public permissionOverwrites: Collection; public readonly permissionsLocked: boolean | null; public readonly position: number;