add the necessary types for server assisted selfbotting

This commit is contained in:
Erkin Alp Güney 2022-03-19 15:17:11 +03:00 committed by GitHub
parent aa7a5b126b
commit 44ddb97e08

View File

@ -12,11 +12,13 @@ export interface Interaction {
} }
export enum InteractionType { export enum InteractionType {
SelfCommand = 0,
Ping = 1, Ping = 1,
ApplicationCommand = 2, ApplicationCommand = 2,
} }
export enum InteractionResponseType { export enum InteractionResponseType {
SelfCommandResponse = 0,
Pong = 1, Pong = 1,
Acknowledge = 2, Acknowledge = 2,
ChannelMessage = 3, ChannelMessage = 3,