From 155b682f6c9b0be7525141c054257657539b29ae Mon Sep 17 00:00:00 2001 From: Jyguy Date: Sat, 4 Jan 2020 17:23:01 -0500 Subject: [PATCH] typings(GuildEmoji): make url not-nullable (#3656) * typings(GuildEmoji): make url not-nullable * make GuildEmoji.url readonly --- typings/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typings/index.d.ts b/typings/index.d.ts index b731c05e2..63942fff8 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -843,6 +843,7 @@ declare module 'discord.js' { public managed: boolean; public requiresColons: boolean; public roles: GuildEmojiRoleStore; + public readonly url: string; public delete(reason?: string): Promise; public edit(data: GuildEmojiEditData, reason?: string): Promise; public equals(other: GuildEmoji | object): boolean;