@voice-ping/cognitive-services-speech
Version:
VoicePing Cognitive Services Speech SDK for JavaScript forked from Microsoft
14 lines (13 loc) • 454 B
TypeScript
import { ConnectionMessage } from "./Exports";
export declare class ConnectionMessageEventArgs {
private privConnectionMessage;
constructor(message: ConnectionMessage);
/**
* Gets the <see cref="ConnectionMessage"/> associated with this <see cref="ConnectionMessageEventArgs"/>.
*/
get message(): ConnectionMessage;
/**
* Returns a string that represents the connection message event.
*/
toString(): string;
}