Interface Option

interface Option {
    description: string;
    extraOptions: StringOption | NumberOption | BooleanOption | ChannelOption | RoleOption | MentionableOption;
    kind: "Role" | "String" | "Integer" | "Boolean" | "User" | "Channel" | "Mentionable" | "Number" | "Attachment";
    required: boolean;
}

Properties

description: string
kind: "Role" | "String" | "Integer" | "Boolean" | "User" | "Channel" | "Mentionable" | "Number" | "Attachment"
required: boolean

Generated using TypeDoc