cnhis-design-vue 3.3.2-beta.18 → 3.3.2-beta.19

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.
Files changed (43) hide show
  1. package/es/components/audio-sdk/index.d.ts +172 -146
  2. package/es/components/audio-sdk/src/Index.vue.d.ts +173 -147
  3. package/es/components/audio-sdk/src/Index.vue2.js +131 -53
  4. package/es/components/audio-sdk/src/audioSDK.d.ts +29 -26
  5. package/es/components/audio-sdk/src/audioSDK.js +124 -42
  6. package/es/components/audio-sdk/src/components/readyCountdown.vue.d.ts +31 -0
  7. package/es/components/audio-sdk/src/components/readyCountdown.vue.js +6 -0
  8. package/es/components/audio-sdk/src/components/readyCountdown.vue2.js +46 -0
  9. package/es/components/audio-sdk/src/components/recording-modal.vue.d.ts +137 -10
  10. package/es/components/audio-sdk/src/components/recording.vue.d.ts +138 -11
  11. package/es/components/audio-sdk/src/components/recording.vue2.js +317 -74
  12. package/es/components/audio-sdk/src/hooks/useChartAudioContext.d.ts +24 -0
  13. package/es/components/audio-sdk/src/hooks/useChartAudioContext.js +176 -0
  14. package/es/components/audio-sdk/src/svgs/Close.vue.js +26 -0
  15. package/es/components/audio-sdk/src/svgs/Continue.vue.js +20 -0
  16. package/es/components/audio-sdk/src/svgs/Enlarge.vue.js +20 -0
  17. package/es/components/audio-sdk/src/svgs/Pause.vue.js +20 -0
  18. package/es/components/audio-sdk/src/svgs/WaveView.vue.js +20 -0
  19. package/es/components/audio-sdk/src/svgs/Zoom.vue.js +27 -0
  20. package/es/components/audio-sdk/src/types/index.d.ts +42 -0
  21. package/es/components/audio-sdk/src/types/index.js +10 -0
  22. package/es/components/audio-sdk/src/utils/recordingModal.d.ts +9 -3
  23. package/es/components/audio-sdk/src/utils/recordingModal.js +57 -32
  24. package/es/components/audio-sdk/style/index.css +1 -1
  25. package/es/components/button-print/index.d.ts +8 -4
  26. package/es/components/button-print/src/ButtonPrint.vue.d.ts +8 -4
  27. package/es/components/button-print/src/components/IdentityVerification.vue.d.ts +4 -2
  28. package/es/components/button-print/src/components/IdentityVerification.vue2.js +6 -2
  29. package/es/components/button-print/src/components/NewPrintComponent.vue.d.ts +4 -2
  30. package/es/components/button-print/src/components/OldPrintComponent.vue.d.ts +4 -2
  31. package/es/components/button-print/src/components/Preview.vue.d.ts +5 -2
  32. package/es/components/button-print/src/components/Preview.vue2.js +6 -2
  33. package/es/components/button-print/src/utils/dialog.js +2 -2
  34. package/es/components/fabric-chart/src/hooks/birthProcess/useBirthProcess.js +2 -1
  35. package/es/components/field-set/src/FieldColor.vue.d.ts +4 -4
  36. package/es/components/field-set/src/FieldFilter.vue.d.ts +4 -4
  37. package/es/components/field-set/src/FieldSet.vue.d.ts +5 -5
  38. package/es/components/field-set/src/components/table-row.vue.d.ts +4 -4
  39. package/es/components/index.css +1 -1
  40. package/es/shared/package.json.js +1 -1
  41. package/package.json +2 -2
  42. package/es/components/audio-sdk/src/components/recording-modal.vue.js +0 -6
  43. package/es/components/audio-sdk/src/components/recording-modal.vue2.js +0 -40
@@ -24,7 +24,12 @@ declare const AudioSdk: SFCWithInstall<import("vue").DefineComponent<{
24
24
  configs: {
25
25
  type: import("vue").PropType<import("../../shared/types").AnyObject>;
26
26
  };
27
+ useSource: {
28
+ type: StringConstructor;
29
+ default: string;
30
+ };
27
31
  }, {
32
+ consultationRecordUrl: string;
28
33
  cssVars: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
29
34
  audioSdk: AudioSDK;
30
35
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
@@ -48,29 +53,47 @@ declare const AudioSdk: SFCWithInstall<import("vue").DefineComponent<{
48
53
  configs: {
49
54
  type: import("vue").PropType<import("../../shared/types").AnyObject>;
50
55
  };
56
+ useSource: {
57
+ type: StringConstructor;
58
+ default: string;
59
+ };
51
60
  }>> & {
52
61
  onSuccess?: ((...args: any[]) => any) | undefined;
53
62
  onClose?: ((...args: any[]) => any) | undefined;
54
63
  onFail?: ((...args: any[]) => any) | undefined;
64
+ onRecordingHeightChange?: ((...args: any[]) => any) | undefined;
55
65
  }>>;
56
66
  attrs: {
57
67
  [x: string]: unknown;
58
68
  };
59
- emit: (event: "close" | "success" | "fail", ...args: any[]) => void;
69
+ default_height: number;
70
+ emit: (event: "close" | "success" | "fail" | "recordingHeightChange", ...args: any[]) => void;
60
71
  recordingRef: import("vue").Ref<any>;
61
72
  isRecording: import("vue").Ref<boolean>;
62
73
  loading: import("vue").Ref<boolean>;
63
- content: import("vue").ComputedRef<string>;
74
+ content: any;
75
+ wsConnected: import("vue").ComputedRef<boolean>;
76
+ recorderStatus: import("vue").ComputedRef<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
64
77
  recordingProps: import("vue").ComputedRef<{
65
78
  token: string | undefined;
66
79
  configs: import("../../shared/types").AnyObject;
67
- content: string;
80
+ content: any;
68
81
  intentionCode: string;
82
+ show: boolean;
83
+ wsConnected: boolean;
84
+ recorderStatus: "" | "fail" | "recording" | "pause" | "ws_close" | "stop";
85
+ startWaveViewMethod: (options: import("../../shared/types").AnyObject) => void;
69
86
  }>;
70
87
  isGenerateMedicalRecord: import("vue").ComputedRef<boolean>;
71
- onClose: () => void;
72
- onEnd: () => void;
88
+ handleHeightChange: (height: number) => void;
89
+ onClose: (obj?: import("../../shared/types").AnyObject) => Promise<void>;
73
90
  onSuccess: (data: import("../../shared/types").AnyObject) => void;
91
+ onFail: (error: any) => void;
92
+ startWaveViewMethod: (options: import("../../shared/types").AnyObject) => void;
93
+ onPause: () => void;
94
+ onResume: () => void;
95
+ handleToAnalyzing: (obj?: import("../../shared/types").AnyObject) => Promise<void>;
96
+ createMedicalRecord: () => Promise<void>;
74
97
  CRecording: import("vue").DefineComponent<{
75
98
  content: {
76
99
  type: import("vue").PropType<string | {
@@ -94,11 +117,25 @@ declare const AudioSdk: SFCWithInstall<import("vue").DefineComponent<{
94
117
  type: BooleanConstructor;
95
118
  default: boolean;
96
119
  };
120
+ wsConnected: {
121
+ type: BooleanConstructor;
122
+ default: boolean;
123
+ };
97
124
  fromSdk: {
98
125
  type: BooleanConstructor;
99
126
  };
127
+ show: {
128
+ type: BooleanConstructor;
129
+ default: boolean;
130
+ };
131
+ startWaveViewMethod: {
132
+ type: import("vue").PropType<import("../../shared/types").AnyFn>;
133
+ };
134
+ recorderStatus: {
135
+ type: import("vue").PropType<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
136
+ default: string;
137
+ };
100
138
  }, {
101
- consultationRecordUrl: string;
102
139
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
103
140
  content: {
104
141
  type: import("vue").PropType<string | {
@@ -122,24 +159,117 @@ declare const AudioSdk: SFCWithInstall<import("vue").DefineComponent<{
122
159
  type: BooleanConstructor;
123
160
  default: boolean;
124
161
  };
162
+ wsConnected: {
163
+ type: BooleanConstructor;
164
+ default: boolean;
165
+ };
125
166
  fromSdk: {
126
167
  type: BooleanConstructor;
127
168
  };
169
+ show: {
170
+ type: BooleanConstructor;
171
+ default: boolean;
172
+ };
173
+ startWaveViewMethod: {
174
+ type: import("vue").PropType<import("../../shared/types").AnyFn>;
175
+ };
176
+ recorderStatus: {
177
+ type: import("vue").PropType<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
178
+ default: string;
179
+ };
128
180
  }>> & {
129
181
  onSuccess?: ((...args: any[]) => any) | undefined;
130
182
  onClose?: ((...args: any[]) => any) | undefined;
131
183
  onFail?: ((...args: any[]) => any) | undefined;
132
- onEnd?: ((...args: any[]) => any) | undefined;
133
- "onUpdate:loading"?: ((...args: any[]) => any) | undefined;
184
+ onPause?: ((...args: any[]) => any) | undefined;
185
+ onResume?: ((...args: any[]) => any) | undefined;
186
+ onToAnalyzing?: ((...args: any[]) => any) | undefined;
187
+ onHeightChange?: ((...args: any[]) => any) | undefined;
134
188
  }>>;
135
- emit: (event: "close" | "success" | "end" | "fail" | "update:loading", ...args: any[]) => void;
136
- close: () => void;
137
- toAnalyzing: () => Promise<void>;
189
+ emit: (event: "close" | "success" | "fail" | "pause" | "resume" | "toAnalyzing" | "heightChange", ...args: any[]) => void;
190
+ loading: import("vue").Ref<boolean>;
191
+ content: import("vue").Ref<string | {
192
+ data: string;
193
+ }>;
194
+ wsConnected: import("vue").Ref<boolean>;
195
+ recorderStatus: import("vue").Ref<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
196
+ audioChartRef: import("vue").Ref<HTMLDivElement | undefined>;
197
+ audioChartSamllRef: import("vue").Ref<HTMLDivElement | undefined>;
198
+ contentScrollRef: import("vue").Ref<HTMLDivElement | undefined>;
199
+ isActive: import("vue").Ref<boolean>;
200
+ isWarning: import("vue").Ref<boolean>;
201
+ formattedTime: import("vue").ComputedRef<string>;
202
+ isCountFinished: import("vue").Ref<boolean>;
203
+ isCountActive: import("vue").Ref<boolean>;
204
+ isZoomSmall: import("vue").Ref<boolean>;
205
+ pause: any;
206
+ btnDisabled: import("vue").ComputedRef<any>;
207
+ handleEnd: (closeType?: string) => Promise<any>;
208
+ handlePause: () => Promise<void>;
209
+ handlePlay: () => Promise<void>;
210
+ handleZoom: () => Promise<void>;
211
+ setWarningState: (state: boolean) => void;
212
+ startWarningTimer: (initTime?: number) => void;
213
+ initStartWaveView: () => Promise<void>;
214
+ cleanupState: () => void;
215
+ handleHeightChange: (showContent: boolean) => void;
216
+ onEnd: (closeType?: string) => Promise<any>;
217
+ onPause: () => Promise<void>;
218
+ onPlay: () => Promise<void>;
219
+ onZoom: () => Promise<void>;
220
+ isFailStatus: import("vue").ComputedRef<boolean>;
221
+ isActiveStatus: import("vue").ComputedRef<boolean>;
222
+ isWarningStatus: import("vue").ComputedRef<boolean>;
223
+ isPauseStatus: import("vue").ComputedRef<boolean>;
224
+ showContent: import("vue").ComputedRef<boolean>;
225
+ tip: import("vue").ComputedRef<"录音异常!" | "录音识别中..." | "正在录音中..." | "无语音录入,请检测是否录音!" | "已暂停录音">;
226
+ tipSmall: import("vue").ComputedRef<"录入异常" | "识别中..." | "录音中..." | "已暂停">;
227
+ showDom: import("vue").ComputedRef<boolean>;
138
228
  NIcon: any;
139
229
  NButton: any;
140
230
  NSpin: any;
141
- Mic: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
142
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "success" | "end" | "fail" | "update:loading")[], "close" | "success" | "end" | "fail" | "update:loading", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
231
+ NSpace: any;
232
+ NTooltip: any;
233
+ MicOff: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
234
+ PlayCircleOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
235
+ StopCircle: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
236
+ ReadyCountdown: import("vue").DefineComponent<{
237
+ isCountActive: {
238
+ type: BooleanConstructor;
239
+ default: boolean;
240
+ };
241
+ }, {
242
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
243
+ isCountActive: {
244
+ type: BooleanConstructor;
245
+ default: boolean;
246
+ };
247
+ }>> & {
248
+ "onUpdate:isCountFinished"?: ((...args: any[]) => any) | undefined;
249
+ }>>;
250
+ emit: (event: "update:isCountFinished", ...args: any[]) => void;
251
+ renderCountdown: ({ seconds }: {
252
+ seconds: number;
253
+ }) => number;
254
+ countDownFinish: () => void;
255
+ NCountdown: any;
256
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:isCountFinished"[], "update:isCountFinished", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
257
+ isCountActive: {
258
+ type: BooleanConstructor;
259
+ default: boolean;
260
+ };
261
+ }>> & {
262
+ "onUpdate:isCountFinished"?: ((...args: any[]) => any) | undefined;
263
+ }, {
264
+ isCountActive: boolean;
265
+ }>;
266
+ CloseSvg: any;
267
+ ZoomSvg: any;
268
+ PauseSvg: any;
269
+ ContinueSvg: any;
270
+ EnlargeSvg: any;
271
+ WaveView: any;
272
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "success" | "fail" | "pause" | "resume" | "toAnalyzing" | "heightChange")[], "close" | "success" | "fail" | "pause" | "resume" | "toAnalyzing" | "heightChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
143
273
  content: {
144
274
  type: import("vue").PropType<string | {
145
275
  data: string;
@@ -162,154 +292,44 @@ declare const AudioSdk: SFCWithInstall<import("vue").DefineComponent<{
162
292
  type: BooleanConstructor;
163
293
  default: boolean;
164
294
  };
295
+ wsConnected: {
296
+ type: BooleanConstructor;
297
+ default: boolean;
298
+ };
165
299
  fromSdk: {
166
300
  type: BooleanConstructor;
167
301
  };
302
+ show: {
303
+ type: BooleanConstructor;
304
+ default: boolean;
305
+ };
306
+ startWaveViewMethod: {
307
+ type: import("vue").PropType<import("../../shared/types").AnyFn>;
308
+ };
309
+ recorderStatus: {
310
+ type: import("vue").PropType<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
311
+ default: string;
312
+ };
168
313
  }>> & {
169
314
  onSuccess?: ((...args: any[]) => any) | undefined;
170
315
  onClose?: ((...args: any[]) => any) | undefined;
171
316
  onFail?: ((...args: any[]) => any) | undefined;
172
- onEnd?: ((...args: any[]) => any) | undefined;
173
- "onUpdate:loading"?: ((...args: any[]) => any) | undefined;
317
+ onPause?: ((...args: any[]) => any) | undefined;
318
+ onResume?: ((...args: any[]) => any) | undefined;
319
+ onToAnalyzing?: ((...args: any[]) => any) | undefined;
320
+ onHeightChange?: ((...args: any[]) => any) | undefined;
174
321
  }, {
175
322
  content: string | {
176
323
  data: string;
177
324
  };
178
325
  loading: boolean;
326
+ show: boolean;
179
327
  showBtn: boolean;
328
+ wsConnected: boolean;
180
329
  fromSdk: boolean;
330
+ recorderStatus: "" | "fail" | "recording" | "pause" | "ws_close" | "stop";
181
331
  }>;
182
- RecordingModal: import("vue").DefineComponent<{
183
- content: {
184
- type: StringConstructor;
185
- default: string;
186
- };
187
- }, {
188
- cssVars: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
189
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
190
- content: {
191
- type: StringConstructor;
192
- default: string;
193
- };
194
- }>> & {}>>;
195
- NModal: any;
196
- Recording: import("vue").DefineComponent<{
197
- content: {
198
- type: import("vue").PropType<string | {
199
- data: string;
200
- }>;
201
- default: string;
202
- };
203
- showBtn: {
204
- type: BooleanConstructor;
205
- };
206
- token: {
207
- type: StringConstructor;
208
- };
209
- intentionCode: {
210
- type: StringConstructor;
211
- };
212
- configs: {
213
- type: import("vue").PropType<import("../../shared/types").AnyObject>;
214
- };
215
- loading: {
216
- type: BooleanConstructor;
217
- default: boolean;
218
- };
219
- fromSdk: {
220
- type: BooleanConstructor;
221
- };
222
- }, {
223
- consultationRecordUrl: string;
224
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
225
- content: {
226
- type: import("vue").PropType<string | {
227
- data: string;
228
- }>;
229
- default: string;
230
- };
231
- showBtn: {
232
- type: BooleanConstructor;
233
- };
234
- token: {
235
- type: StringConstructor;
236
- };
237
- intentionCode: {
238
- type: StringConstructor;
239
- };
240
- configs: {
241
- type: import("vue").PropType<import("../../shared/types").AnyObject>;
242
- };
243
- loading: {
244
- type: BooleanConstructor;
245
- default: boolean;
246
- };
247
- fromSdk: {
248
- type: BooleanConstructor;
249
- };
250
- }>> & {
251
- onSuccess?: ((...args: any[]) => any) | undefined;
252
- onClose?: ((...args: any[]) => any) | undefined;
253
- onFail?: ((...args: any[]) => any) | undefined;
254
- onEnd?: ((...args: any[]) => any) | undefined;
255
- "onUpdate:loading"?: ((...args: any[]) => any) | undefined;
256
- }>>;
257
- emit: (event: "close" | "success" | "end" | "fail" | "update:loading", ...args: any[]) => void;
258
- close: () => void;
259
- toAnalyzing: () => Promise<void>;
260
- NIcon: any;
261
- NButton: any;
262
- NSpin: any;
263
- Mic: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
264
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "success" | "end" | "fail" | "update:loading")[], "close" | "success" | "end" | "fail" | "update:loading", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
265
- content: {
266
- type: import("vue").PropType<string | {
267
- data: string;
268
- }>;
269
- default: string;
270
- };
271
- showBtn: {
272
- type: BooleanConstructor;
273
- };
274
- token: {
275
- type: StringConstructor;
276
- };
277
- intentionCode: {
278
- type: StringConstructor;
279
- };
280
- configs: {
281
- type: import("vue").PropType<import("../../shared/types").AnyObject>;
282
- };
283
- loading: {
284
- type: BooleanConstructor;
285
- default: boolean;
286
- };
287
- fromSdk: {
288
- type: BooleanConstructor;
289
- };
290
- }>> & {
291
- onSuccess?: ((...args: any[]) => any) | undefined;
292
- onClose?: ((...args: any[]) => any) | undefined;
293
- onFail?: ((...args: any[]) => any) | undefined;
294
- onEnd?: ((...args: any[]) => any) | undefined;
295
- "onUpdate:loading"?: ((...args: any[]) => any) | undefined;
296
- }, {
297
- content: string | {
298
- data: string;
299
- };
300
- loading: boolean;
301
- showBtn: boolean;
302
- fromSdk: boolean;
303
- }>;
304
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
305
- content: {
306
- type: StringConstructor;
307
- default: string;
308
- };
309
- }>>, {
310
- content: string;
311
- }>;
312
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "success" | "fail")[], "close" | "success" | "fail", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
332
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "success" | "fail" | "recordingHeightChange")[], "close" | "success" | "fail" | "recordingHeightChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
313
333
  timed: {
314
334
  type: NumberConstructor;
315
335
  default: number;
@@ -330,13 +350,19 @@ declare const AudioSdk: SFCWithInstall<import("vue").DefineComponent<{
330
350
  configs: {
331
351
  type: import("vue").PropType<import("../../shared/types").AnyObject>;
332
352
  };
353
+ useSource: {
354
+ type: StringConstructor;
355
+ default: string;
356
+ };
333
357
  }>> & {
334
358
  onSuccess?: ((...args: any[]) => any) | undefined;
335
359
  onClose?: ((...args: any[]) => any) | undefined;
336
360
  onFail?: ((...args: any[]) => any) | undefined;
361
+ onRecordingHeightChange?: ((...args: any[]) => any) | undefined;
337
362
  }, {
338
363
  timed: number;
339
364
  realTimeRecognition: boolean;
340
365
  allowPunctuationMark: boolean;
366
+ useSource: string;
341
367
  }>>;
342
368
  export default AudioSdk;