Interface APIApplicationCommandInteractionDataNumberOption<Type>

interface APIApplicationCommandInteractionDataNumberOption<
    Type extends InteractionType = InteractionType,
> {
    focused?: boolean;
    name: string;
    type: Number;
    value: Type extends ApplicationCommandAutocomplete ? string : number;
}

Type Parameters

Hierarchy (View Summary)

Properties

Properties

focused?: boolean
name: string
type: Number
value: Type extends ApplicationCommandAutocomplete ? string : number