UNPKG

seyfert

Version:

The most advanced framework for discord bots

25 lines (24 loc) 1.92 kB
import type { APIApplicationCommandDMInteraction, APIApplicationCommandGuildInteraction, APIApplicationCommandInteraction } from './_interactions/applicationCommands'; import type { APIApplicationCommandAutocompleteDMInteraction, APIApplicationCommandAutocompleteGuildInteraction, APIApplicationCommandAutocompleteInteraction } from './_interactions/autocomplete'; import type { APIMessageComponentDMInteraction, APIMessageComponentGuildInteraction, APIMessageComponentInteraction } from './_interactions/messageComponents'; import type { APIModalSubmitDMInteraction, APIModalSubmitGuildInteraction, APIModalSubmitInteraction } from './_interactions/modalSubmit'; import type { APIPingInteraction } from './_interactions/ping'; export * from './_interactions/applicationCommands'; export * from './_interactions/autocomplete'; export * from './_interactions/base'; export * from './_interactions/messageComponents'; export * from './_interactions/modalSubmit'; export * from './_interactions/ping'; export * from './_interactions/responses'; /** * https://discord.com/developers/docs/interactions/receiving-and-responding#interaction-object */ export type APIInteraction = APIApplicationCommandAutocompleteInteraction | APIApplicationCommandInteraction | APIMessageComponentInteraction | APIModalSubmitInteraction | APIPingInteraction; /** * https://discord.com/developers/docs/interactions/receiving-and-responding#interaction-object */ export type APIDMInteraction = APIApplicationCommandAutocompleteDMInteraction | APIApplicationCommandDMInteraction | APIMessageComponentDMInteraction | APIModalSubmitDMInteraction; /** * https://discord.com/developers/docs/interactions/receiving-and-responding#interaction-object */ export type APIGuildInteraction = APIApplicationCommandAutocompleteGuildInteraction | APIApplicationCommandGuildInteraction | APIMessageComponentGuildInteraction | APIModalSubmitGuildInteraction;