From f294d1eff207ded337ccff6413824bb6ea60b4c7 Mon Sep 17 00:00:00 2001 From: Synbulat Biishev Date: Wed, 18 Aug 2021 01:44:02 +0500 Subject: [PATCH] typings(GuildChannel): Added missing typing (#6454) --- typings/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typings/index.d.ts b/typings/index.d.ts index ab686cb62..385adec7c 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -812,6 +812,7 @@ export class GuildChannel extends Channel { public type: Exclude; public readonly viewable: boolean; public clone(options?: GuildChannelCloneOptions): Promise; + public delete(reason?: string): Promise; public edit(data: ChannelData, reason?: string): Promise; public equals(channel: GuildChannel): boolean; public lockPermissions(): Promise;