socket.io-ts-controllers
Version:
Use class-based controllers to handle websocket events
18 lines (16 loc) • 465 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Static access to action types.
*/
var ActionTypes = /** @class */ (function () {
function ActionTypes() {
}
ActionTypes.MESSAGE = "message";
ActionTypes.CONNECT = "connection";
ActionTypes.DISCONNECT = "disconnection";
ActionTypes.PACKET = "packet";
return ActionTypes;
}());
exports.ActionTypes = ActionTypes;
//# sourceMappingURL=ActionTypes.js.map