@signiant/media-shuttle-sdk-base
Version:
The base parent sdk behind other media shuttle sdks (e.g. media-shuttle-sdk)
13 lines • 406 B
TypeScript
declare enum ConnectionState {
/**
* An unknown network event has created a disconnect between the client and its event provider. The SDK will attempt
* to automatically reconnect.
*/
DISCONNECTED = "DISCONNECTED",
/**
* The SDK has successfully reconnected.
*/
CONNECTED = "CONNECTED"
}
export default ConnectionState;
//# sourceMappingURL=ConnectionState.d.ts.map