opensips-js-vue 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/library/index.d.ts +5 -0
- package/library/super.mjs +11611 -20777
- package/library/super.mjs.map +1 -1
- package/library/super.umd.js +119 -2951
- package/library/super.umd.js.map +1 -1
- package/package.json +2 -2
package/library/index.d.ts
CHANGED
|
@@ -413,6 +413,7 @@ export declare type UAConfigurationExtended = UAConfiguration & {
|
|
|
413
413
|
overrideUserAgent?: (userAgent: string) => string
|
|
414
414
|
noiseReductionOptions?: NoiseReductionOptions
|
|
415
415
|
onTransportCallback?: OnTransportCallback
|
|
416
|
+
vadModule?: VADModule
|
|
416
417
|
}
|
|
417
418
|
|
|
418
419
|
export declare type updateRoomListener = (value: RoomChangeEmitType_2) => void
|
|
@@ -421,6 +422,10 @@ export declare function useVsipInject(): VsipAPI;
|
|
|
421
422
|
|
|
422
423
|
export declare function useVsipProvide(): VsipAPI;
|
|
423
424
|
|
|
425
|
+
export declare interface VADModule {
|
|
426
|
+
MicVAD: any
|
|
427
|
+
}
|
|
428
|
+
|
|
424
429
|
export declare interface VADOptions {
|
|
425
430
|
model: 'v5' | 'legacy'
|
|
426
431
|
positiveSpeechThreshold: number
|