opensips-js 0.1.31 → 0.1.32
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/index.d.ts +3 -1
- package/dist/opensips-js.cjs.js +97 -97
- package/dist/opensips-js.es.js +6325 -6159
- package/dist/opensips-js.iife.js +100 -100
- package/dist/opensips-js.umd.js +100 -100
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -534,9 +534,11 @@ declare type ListenerEventType = EndEvent | IncomingEvent | OutgoingEvent | Inco
|
|
|
534
534
|
declare type ListenersKeyType = keyof OpenSIPSEventMap
|
|
535
535
|
|
|
536
536
|
declare class ManagedAudioContext {
|
|
537
|
-
private
|
|
537
|
+
private context;
|
|
538
538
|
private resumePromise;
|
|
539
539
|
constructor();
|
|
540
|
+
private setupErrorHandling;
|
|
541
|
+
private createNewContext;
|
|
540
542
|
getContext(): Promise<AudioContext>;
|
|
541
543
|
}
|
|
542
544
|
|