opensips-js-vue 0.1.9 → 0.1.11
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 +11612 -20778
- 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
|
@@ -243,6 +243,7 @@ export declare type NoiseReductionMode = 'disabled' | 'enabled' | 'dynamic'
|
|
|
243
243
|
|
|
244
244
|
export declare interface NoiseReductionOptions {
|
|
245
245
|
mode: NoiseReductionMode,
|
|
246
|
+
vadModule?: VADModule
|
|
246
247
|
vadConfig?: Partial<VADOptions>
|
|
247
248
|
noiseThreshold?: number
|
|
248
249
|
checkEveryMs?: number
|
|
@@ -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
|