swc/crates/swc_bundler/tests/.cache/deno/9f858d6801bfbf39868a0cd53dc8c88af0a0528d.ts
2021-11-09 20:42:49 +09:00

15 lines
420 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/channels/channel_mention.ts
/** https://discord.com/developers/docs/resources/channel#channel-mention-object */
export interface ChannelMention {
/** id of the channel */
id: string;
/** id of the guild containing the channel */
guildId: string;
/** The type of channel */
type: number;
/** The name of the channel */
name: string;
}