@deepgram/sdk
Version:
Isomorphic Javascript client for Deepgram
14 lines (12 loc) • 388 B
text/typescript
import { SOCKET_STATES } from "../constants";
/**
* Enum representing the different states of a live connection.
*
* @deprecated Since 3.4. Use `SOCKET_STATES` for generic socket connection states instead.
*/
export enum LiveConnectionState {
CONNECTING = SOCKET_STATES.connecting,
OPEN = SOCKET_STATES.open,
CLOSING = SOCKET_STATES.closing,
CLOSED = SOCKET_STATES.closed,
}