From 16db92ede8dc164346eca8482ea008cb21032c7b Mon Sep 17 00:00:00 2001 From: Alexander Kashev Date: Fri, 18 Oct 2019 13:06:34 +0200 Subject: [PATCH] typings(GuildEmoji): restore deletable, remove inherited property deleted (#3543) * Typings: restore deletable on GuildEmoji * Remove inherited property "deleted" --- 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 6ff295469..cfcd96610 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -833,7 +833,7 @@ declare module 'discord.js' { private _roles: string[]; public available: boolean; - public deleted: boolean; + public readonly deletable: boolean; public guild: Guild; public managed: boolean; public requiresColons: boolean;