Interface CreateChannelOptions

interface CreateChannelOptions {
    categoryID?: number;
    description?: string;
    groupID?: string;
    isPublic?: boolean;
}

Properties

categoryID?: number

Place the channel in a specific category.

description?: string

Description of the channel.

groupID?: string

Place the channel in a guild group.

isPublic?: boolean

Set the channel as public or not.