UNPKG

@voice-ping/cognitive-services-speech

Version:

VoicePing Cognitive Services Speech SDK for JavaScript forked from Microsoft

1 lines 1.14 kB
{"version":3,"sources":["src/common.speech/SpeakerRecognitionConfig.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,qBAAa,wBAAwB;IACjC,OAAO,CAAC,cAAc,CAAqB;IAC3C,OAAO,CAAC,WAAW,CAAU;gBAGzB,OAAO,EAAE,OAAO,EAChB,UAAU,EAAE,kBAAkB;IAKlC,IAAW,UAAU,IAAI,kBAAkB,CAE1C;IAED,IAAW,OAAO,IAAI,OAAO,CAE5B;CACJ","file":"SpeakerRecognitionConfig.d.ts","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT license.\n\nimport { PropertyCollection } from \"../sdk/Exports\";\nimport { Context } from \"./Exports\";\n\nexport class SpeakerRecognitionConfig {\n private privParameters: PropertyCollection;\n private privContext: Context;\n\n constructor(\n context: Context,\n parameters: PropertyCollection) {\n this.privContext = context ? context : new Context(null);\n this.privParameters = parameters;\n }\n\n public get parameters(): PropertyCollection {\n return this.privParameters;\n }\n\n public get Context(): Context {\n return this.privContext;\n }\n}\n"]}