typealias APIApplicationCommandInteractionWrapper

external
export type APIApplicationCommandInteractionWrapper<Data extends APIApplicationCommandInteractionData> = APIBaseInteraction<InteractionType.ApplicationCommand, Data> & Required<Pick<APIBaseInteraction<InteractionType.ApplicationCommand, Data>, 'app_permissions' | 'channel_id' | 'channel' | 'data'>>;

https://discord.com/developers/docs/interactions/receiving-and-responding#interaction-object

Type Parameters