typealias SendableChannels

export type SendableChannels = Extract<Channel, { send: (...args: any[]) => any }>;

The types of channels that are text-based and can have messages sent into. The available types are:* ChannelType.DM* ChannelType.GuildText* ChannelType.GuildAnnouncement* ChannelType.AnnouncementThread* ChannelType.PublicThread* ChannelType.PrivateThread* ChannelType.GuildVoice* ChannelType.GuildStageVoice

Union Members

Extract<Channel, { send: (...args: any[]) => any }>