From 624c4b57cb5a2c0ade2f54cf4363374e021aacac Mon Sep 17 00:00:00 2001 From: ITOH <72305210+itohatweb@users.noreply.github.com> Date: Tue, 13 Apr 2021 09:59:20 +0200 Subject: [PATCH] fix(structures/channel): wrong type for permissionOverwrites --- src/structures/channel.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/structures/channel.ts b/src/structures/channel.ts index f8efdae7b..71086cc4f 100644 --- a/src/structures/channel.ts +++ b/src/structures/channel.ts @@ -103,7 +103,9 @@ export async function createDiscordenoChannel( return channel; } -export interface DiscordenoChannel extends Channel { +export interface DiscordenoChannel + extends Omit { + permissionOverwrites: DiscordOverwrite[]; guildId: string; // GETTERS