Interface ApplicationCommandOptionBase<T>

interface ApplicationCommandOptionBase<
    T extends ApplicationCommandOptionTypes = ApplicationCommandOptionTypes,
> {
    name: string;
    required: boolean;
    type: T;
}

Type Parameters

Hierarchy (View Summary)

Properties

Properties

name: string
required: boolean
type: T