@chatscope/use-chat
Version:
React hook for state management in chat applications
12 lines • 510 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConnectionState = void 0;
/**
* Can be used for state of the user connection, service connection etc
*/
var ConnectionState;
(function (ConnectionState) {
ConnectionState[ConnectionState["Connected"] = 0] = "Connected";
ConnectionState[ConnectionState["Disconnected"] = 1] = "Disconnected";
})(ConnectionState = exports.ConnectionState || (exports.ConnectionState = {}));
//# sourceMappingURL=ConnectionState.js.map