UNPKG

@novo-learning/novo-sdk

Version:

SDK for the Novolanguage Speech Analysis API

10 lines (8 loc) 265 B
import { ConnectionState } from '../entities/connection-state'; export class ConnectionStateChangedEvent { static readonly type = 'ConnectionStateChanged'; previous?: ConnectionState; state: ConnectionState = 'initial'; reason?: string; code?: number; }