From 673e691c6e26a0abbadb93cf8ef4b1e45ad1accc Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Thu, 11 Feb 2021 20:44:26 +0100 Subject: :wrench: build --- dist/models/Interaction.d.ts | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 dist/models/Interaction.d.ts (limited to 'dist/models/Interaction.d.ts') diff --git a/dist/models/Interaction.d.ts b/dist/models/Interaction.d.ts new file mode 100644 index 00000000..df03b8a9 --- /dev/null +++ b/dist/models/Interaction.d.ts @@ -0,0 +1,28 @@ +import { AllowedMentions, Embed } from "./Message"; +export interface Interaction { + id: bigint; + type: InteractionType; + data?: {}; + guild_id: bigint; + channel_id: bigint; + member_id: bigint; + token: string; + version: number; +} +export declare enum InteractionType { + Ping = 1, + ApplicationCommand = 2 +} +export declare enum InteractionResponseType { + Pong = 1, + Acknowledge = 2, + ChannelMessage = 3, + ChannelMessageWithSource = 4, + AcknowledgeWithSource = 5 +} +export interface InteractionApplicationCommandCallbackData { + tts?: boolean; + content: string; + embeds?: Embed[]; + allowed_mentions?: AllowedMentions; +} -- cgit 1.5.1