opensips-js 0.1.9 → 0.1.10
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 +0 -15
- package/dist/opensips-js.cjs.js +54 -54
- package/dist/opensips-js.es.js +2 -22
- package/dist/opensips-js.iife.js +44 -44
- package/dist/opensips-js.umd.js +44 -44
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -495,23 +495,8 @@ declare type ListenersKeyType = keyof OpenSIPSEventMap
|
|
|
495
495
|
declare class ManagedAudioContext {
|
|
496
496
|
private readonly context;
|
|
497
497
|
private resumePromise;
|
|
498
|
-
private stateChangeCount;
|
|
499
|
-
private lastStateChange;
|
|
500
|
-
private resumeAttempts;
|
|
501
498
|
constructor();
|
|
502
499
|
getContext(): Promise<AudioContext>;
|
|
503
|
-
get rawContext(): AudioContext;
|
|
504
|
-
getDebugInfo(): {
|
|
505
|
-
state: AudioContextState;
|
|
506
|
-
sampleRate: number;
|
|
507
|
-
currentTime: number;
|
|
508
|
-
stateChangeCount: number;
|
|
509
|
-
resumeAttempts: number;
|
|
510
|
-
lastStateChange: string;
|
|
511
|
-
hasResumePromise: boolean;
|
|
512
|
-
documentHidden: boolean;
|
|
513
|
-
documentVisibility: DocumentVisibilityState;
|
|
514
|
-
};
|
|
515
500
|
}
|
|
516
501
|
|
|
517
502
|
declare type memberHangupListener = (event: object) => void
|