interface WebhookCreateOptions {
    avatar?: null | string | Buffer;
    channel:
        | string
        | NewsChannel
        | StageChannel
        | TextChannel
        | VoiceChannel
        | ForumChannel
        | MediaChannel;
    name: string;
    reason?: string;
}

Hierarchy (View Summary)

Properties

avatar?: null | string | Buffer
channel:
    | string
    | NewsChannel
    | StageChannel
    | TextChannel
    | VoiceChannel
    | ForumChannel
    | MediaChannel
name: string
reason?: string