From 345869374845cf4fc4463fd0ac3eea9b582ee1d1 Mon Sep 17 00:00:00 2001 From: izexi <43889168+izexi@users.noreply.github.com> Date: Fri, 4 Oct 2019 10:19:46 +0100 Subject: [PATCH] typings: mark GuildMember#nickname as nullable (#3516) --- 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 0e3e95b3c..1bbb8038f 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -851,7 +851,7 @@ declare module 'discord.js' { public joinedTimestamp: number | null; public readonly kickable: boolean; public readonly manageable: boolean; - public nickname: string; + public nickname: string | null; public readonly partial: boolean; public readonly permissions: Readonly; public readonly premiumSince: Date | null;