UNPKG

@euirim/microsoft-cognitiveservices-speech-sdk

Version:
8 lines (7 loc) 371 B
import { ConnectionMessage } from "./ConnectionMessage"; import { Promise } from "./Promise"; import { RawWebsocketMessage } from "./RawWebsocketMessage"; export interface IWebsocketMessageFormatter { toConnectionMessage(message: RawWebsocketMessage): Promise<ConnectionMessage>; fromConnectionMessage(message: ConnectionMessage): Promise<RawWebsocketMessage>; }