@twitchfy/chatbot
Version:
A powerful node module to make your own Twitch ChatBot
13 lines (12 loc) • 540 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EventSubConnection = void 0;
/**
* The diffrent types of connections for the Twitch EventSub.
*/
var EventSubConnection;
(function (EventSubConnection) {
EventSubConnection[EventSubConnection["WebSocket"] = 0] = "WebSocket";
EventSubConnection[EventSubConnection["Webhook"] = 1] = "Webhook";
EventSubConnection[EventSubConnection["Conduit"] = 2] = "Conduit";
})(EventSubConnection || (exports.EventSubConnection = EventSubConnection = {}));