interface WelcomeChannelData {
    channel:
        | string
        | NewsChannel
        | TextChannel
        | ForumChannel
        | MediaChannel;
    description: string;
    emoji?: EmojiIdentifierResolvable;
}

Properties

description: string