blob: 6985e3992d27eb09493a032eba59e7d3847d8fcf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.InteractionResponseType = exports.InteractionType = void 0;
var InteractionType;
(function (InteractionType) {
InteractionType[InteractionType["Ping"] = 1] = "Ping";
InteractionType[InteractionType["ApplicationCommand"] = 2] = "ApplicationCommand";
})(InteractionType = exports.InteractionType || (exports.InteractionType = {}));
var InteractionResponseType;
(function (InteractionResponseType) {
InteractionResponseType[InteractionResponseType["Pong"] = 1] = "Pong";
InteractionResponseType[InteractionResponseType["Acknowledge"] = 2] = "Acknowledge";
InteractionResponseType[InteractionResponseType["ChannelMessage"] = 3] = "ChannelMessage";
InteractionResponseType[InteractionResponseType["ChannelMessageWithSource"] = 4] = "ChannelMessageWithSource";
InteractionResponseType[InteractionResponseType["AcknowledgeWithSource"] = 5] = "AcknowledgeWithSource";
})(InteractionResponseType = exports.InteractionResponseType || (exports.InteractionResponseType = {}));
//# sourceMappingURL=Interaction.js.map
|