microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
22 lines (21 loc) • 605 B
TypeScript
/**
* Defines content for session events like SessionStarted/Stopped, SoundStarted/Stopped.
* @class SessionEventArgs
*/
export declare class SessionEventArgs {
private privSessionId;
/**
* Creates and initializes an instance of this class.
* @constructor
* @param {string} sessionId - The session id.
*/
constructor(sessionId: string);
/**
* Represents the session identifier.
* @member SessionEventArgs.prototype.sessionId
* @function
* @public
* @returns {string} Represents the session identifier.
*/
get sessionId(): string;
}