UNPKG

diffusion

Version:

Diffusion JavaScript client

20 lines (19 loc) 725 B
"use strict"; /** * @module Client */ Object.defineProperty(exports, "__esModule", { value: true }); exports.InternalSessionState = void 0; /** * The state of the internal session */ var InternalSessionState; (function (InternalSessionState) { InternalSessionState["INITIALISING"] = "initialising"; InternalSessionState["CONNECTING"] = "connecting"; InternalSessionState["CONNECTED"] = "connected"; InternalSessionState["DISCONNECTED"] = "disconnected"; InternalSessionState["RECONNECTING"] = "reconnecting"; InternalSessionState["CLOSING"] = "closing"; InternalSessionState["CLOSED"] = "closed"; })(InternalSessionState = exports.InternalSessionState || (exports.InternalSessionState = {}));