cocoa-discord - v3.2.0
    Preparing search index...

    Interface CocoaSlash

    This interface represent a single slash command

    interface CocoaSlash {
        command: RESTPostAPIApplicationCommandsJSONBody;
        func: (interaction: ChatInputCommandInteraction) => Promise<void>;
        guild_ids?: string[] | "Global";
        long_description?: string;
    }
    Index

    Properties

    command: RESTPostAPIApplicationCommandsJSONBody
    func: (interaction: ChatInputCommandInteraction) => Promise<void>
    guild_ids?: string[] | "Global"
    long_description?: string