microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
55 lines (53 loc) • 1.86 kB
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
Object.defineProperty(exports, "__esModule", { value: true });
exports.Translations = void 0;
const Exports_js_1 = require("./Exports.js");
/**
* Represents collection of parameters and their values.
* @class Translations
*/
class Translations {
constructor() {
// Use an PropertyCollection internally, just wrapping it to hide the | enum syntax it has.
this.privMap = new Exports_js_1.PropertyCollection();
}
/**
* Get the languages in the object in a String array.
* @member Translations.prototype.languages
* @function
* @public
* @returns {string[]} languages in translations object.
*/
get languages() {
return this.privMap.keys;
}
/**
* Returns the parameter value in type String. The parameter must have the same type as String.
* Currently only String, int and bool are allowed.
* If the name is not available, the specified defaultValue is returned.
* @member Translations.prototype.get
* @function
* @public
* @param {string} key - The parameter name.
* @param {string} def - The default value which is returned if the parameter is not available in the collection.
* @returns {string} value of the parameter.
*/
get(key, def) {
return this.privMap.getProperty(key, def);
}
/**
* Sets the String value of the parameter specified by name.
* @member Translations.prototype.set
* @function
* @public
* @param {string} key - The parameter name.
* @param {string} value - The value of the parameter.
*/
set(key, value) {
this.privMap.setProperty(key, value);
}
}
exports.Translations = Translations;
//# sourceMappingURL=Translations.js.map
;