microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
31 lines (29 loc) • 1.15 kB
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
Object.defineProperty(exports, "__esModule", { value: true });
exports.SpeechSynthesisBoundaryType = void 0;
/**
* Defines the boundary type of speech synthesis boundary event.
* @class SpeechSynthesisBoundaryType
* Added in version 1.21.0
*/
var SpeechSynthesisBoundaryType;
(function (SpeechSynthesisBoundaryType) {
/**
* Indicates the boundary text is a word.
* @member SpeechSynthesisBoundaryType.Word
*/
SpeechSynthesisBoundaryType["Word"] = "WordBoundary";
/**
* Indicates the boundary text is a punctuation.
* @member SpeechSynthesisBoundaryType.Punctuation
*/
SpeechSynthesisBoundaryType["Punctuation"] = "PunctuationBoundary";
/**
* Indicates the boundary text is a sentence.
* @member SpeechSynthesisBoundaryType.Sentence
*/
SpeechSynthesisBoundaryType["Sentence"] = "SentenceBoundary";
})(SpeechSynthesisBoundaryType = exports.SpeechSynthesisBoundaryType || (exports.SpeechSynthesisBoundaryType = {}));
//# sourceMappingURL=SpeechSynthesisBoundaryType.js.map
;