@signiant/media-shuttle-sdk-base
Version:
The base parent sdk behind other media shuttle sdks (e.g. media-shuttle-sdk)
14 lines (13 loc) • 465 B
JavaScript
var ConnectionState;
(function (ConnectionState) {
/**
* An unknown network event has created a disconnect between the client and its event provider. The SDK will attempt
* to automatically reconnect.
*/
ConnectionState["DISCONNECTED"] = "DISCONNECTED";
/**
* The SDK has successfully reconnected.
*/
ConnectionState["CONNECTED"] = "CONNECTED";
})(ConnectionState || (ConnectionState = {}));
export default ConnectionState;