import type { APIBaseInteraction, APIChatInputApplicationCommandInteractionData, APIDMInteractionWrapper, APIGuildInteractionWrapper, InteractionType } from '../index'; export type APIApplicationCommandAutocompleteInteraction = APIBaseInteraction & Required>>, 'data'>>; /** * https://discord.com/developers/docs/interactions/receiving-and-responding#interaction-object */ export type APIApplicationCommandAutocompleteDMInteraction = APIDMInteractionWrapper; /** * https://discord.com/developers/docs/interactions/receiving-and-responding#interaction-object */ export type APIApplicationCommandAutocompleteGuildInteraction = APIGuildInteractionWrapper;