From 2704059a8d3c737d333f272c462f74d8e90cf6ea Mon Sep 17 00:00:00 2001 From: Donovan Daniels Date: Sat, 17 Aug 2024 18:36:43 -0500 Subject: [PATCH] Add reason to types for editing guild channels --- lib/types/channels.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/types/channels.d.ts b/lib/types/channels.d.ts index ae1d246d..8f23b47b 100644 --- a/lib/types/channels.d.ts +++ b/lib/types/channels.d.ts @@ -253,7 +253,7 @@ export interface EditGuildChannelOptions { } export interface EditChannelOptions extends EditGroupDMOptions, EditGuildChannelOptions {} -export interface EditAnyGuildChannelOptions extends Pick {} +export interface EditAnyGuildChannelOptions extends Pick {} export interface EditTextChannelOptions extends EditAnyGuildChannelOptions, Pick { type?: ChannelTypes.GUILD_ANNOUNCEMENT; } export interface EditAnnouncementChannelOptions extends Omit { type?: ChannelTypes.GUILD_TEXT; } export interface EditVoiceChannelOptions extends EditAnyGuildChannelOptions, Pick {}