UNPKG

microsoft-cognitiveservices-speech-sdk

Version:
29 lines (27 loc) 936 B
"use strict"; // // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE.md file in the project root for full license information. // Object.defineProperty(exports, "__esModule", { value: true }); exports.SubStringMatch = exports.EntityType = void 0; /** * Represents the type of the IntentEntity. */ var EntityType; (function (EntityType) { EntityType["Unknown"] = "Unknown"; EntityType["Open"] = "Open"; EntityType["BuiltIn"] = "BuiltIn"; EntityType["ClosedList"] = "ClosedList"; EntityType["Dynamic"] = "Dynamic"; })(EntityType = exports.EntityType || (exports.EntityType = {})); /** * Substring match for IntentText. */ var SubStringMatch; (function (SubStringMatch) { SubStringMatch["None"] = "None"; SubStringMatch["LeftRooted"] = "LeftRooted"; })(SubStringMatch = exports.SubStringMatch || (exports.SubStringMatch = {})); //# sourceMappingURL=Hints.js.map