Interface OtherCommandOptions

interface OtherCommandOptions {
    description: string;
    displayDescription?: string;
    displayName?: string;
    name: string;
    required?: boolean;
    serverLocalizedName?: string;
    type:
        | Boolean
        | User
        | Role
        | Mentionable
        | Attachment;
}

Hierarchy

Properties

description: string
displayDescription?: string
displayName?: string
name: string
required?: boolean
serverLocalizedName?: string
type:
    | Boolean
    | User
    | Role
    | Mentionable
    | Attachment