Interface APIApplicationCommandInteractionDataIntegerOption<Type>

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

Type Parameters

Hierarchy (View Summary)

Properties

Properties

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