/** * All the different channel types: * * `GUILD_TEXT` - A text channel on Discord * * `DM` - A DM channel * * `UNKNOWN` - An unknown channel type * @typedef {string} ChannelType */ declare type ChannelType = 'GUILD_TEXT' | 'DM' | 'UNKNOWN'; declare const RawChannelTypes: Record; export { ChannelType, RawChannelTypes }; //# sourceMappingURL=channelTypes.d.ts.map