From 0b59141054557635af9ef3244ebff03558204e03 Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Sat, 17 Oct 2020 14:33:08 +0100 Subject: [PATCH] types(GuildPreview): Make description nullable (#4854) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Antonio Román --- 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 3b4189bf0..995fd3ac4 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -887,7 +887,7 @@ declare module 'discord.js' { constructor(client: Client, data: object); public approximateMemberCount: number; public approximatePresenceCount: number; - public description?: string; + public description: string | null; public discoverySplash: string | null; public emojis: Collection; public features: GuildFeatures[];