UNPKG

microsoft-cognitiveservices-speech-sdk

Version:
13 lines (12 loc) 394 B
import { MessageType } from "./ConnectionMessage.js"; export declare class RawWebsocketMessage { private privMessageType; private privPayload; private privId; constructor(messageType: MessageType, payload: any, id?: string); get messageType(): MessageType; get payload(): any; get textContent(): string; get binaryContent(): ArrayBuffer; get id(): string; }