@opentok/client 2.21.5 → 2.21.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/js/opentok.d.ts +4 -0
- package/dist/js/opentok.js +1649 -1502
- package/dist/js/opentok.js.map +1 -1
- package/dist/js/opentok.min.js +7 -7
- package/dist/js/opentok.min.js.map +1 -1
- package/package.json +1 -1
package/dist/js/opentok.d.ts
CHANGED
|
@@ -511,6 +511,10 @@ declare namespace OT {
|
|
|
511
511
|
|
|
512
512
|
export function reportIssue(callback: (error?: OTError, reportId?: string) => void): void;
|
|
513
513
|
|
|
514
|
+
export function setAudioOutputDevice(deviceId: string): Promise<void>;
|
|
515
|
+
|
|
516
|
+
export function getActiveAudioOutputDevice(): Promise<AudioOutputDevice>;
|
|
517
|
+
|
|
514
518
|
export function setLogLevel(level: number): void;
|
|
515
519
|
|
|
516
520
|
export function upgradeSystemRequirements(): void;
|