UNPKG

@voice-ping/cognitive-services-speech

Version:

VoicePing Cognitive Services Speech SDK for JavaScript forked from Microsoft

1 lines 1.47 kB
{"version":3,"sources":["src/sdk/Transcription/ConversationParticipantsChangedEventArgs.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAC9C,OAAO,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,qBAAa,wCAAyC,SAAQ,gBAAgB;IAC1E,OAAO,CAAC,UAAU,CAA2B;IAC7C,OAAO,CAAC,eAAe,CAAiB;gBAErB,MAAM,EAAE,wBAAwB,EAAE,YAAY,EAAE,YAAY,EAAE,EAAE,SAAS,CAAC,EAAE,MAAM;IAMrG,IAAW,MAAM,IAAI,wBAAwB,CAE5C;IAED,IAAW,YAAY,IAAI,YAAY,EAAE,CAExC;CACJ","file":"ConversationParticipantsChangedEventArgs.d.ts","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT license.\n// Multi-device Conversation is a Preview feature.\n\nimport { SessionEventArgs } from \"../Exports\";\nimport { ParticipantChangedReason } from \"./Exports\";\nimport { IParticipant } from \"./IParticipant\";\n\nexport class ConversationParticipantsChangedEventArgs extends SessionEventArgs {\n private privReason: ParticipantChangedReason;\n private privParticipant: IParticipant[];\n\n public constructor(reason: ParticipantChangedReason, participants: IParticipant[], sessionId?: string) {\n super(sessionId);\n this.privReason = reason;\n this.privParticipant = participants;\n }\n\n public get reason(): ParticipantChangedReason {\n return this.privReason;\n }\n\n public get participants(): IParticipant[] {\n return this.privParticipant;\n }\n}\n"]}