@ecan-bi/datav 1.0.15 → 1.0.16

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 (53) hide show
  1. package/dist/_utils/constant.d.ts +1 -1
  2. package/dist/_utils/hooks/index.d.ts +1 -1
  3. package/dist/_utils/hooks/usePickEchartsData.d.ts +1 -1
  4. package/dist/_utils/hooks/useRequestData.d.ts +5 -13
  5. package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +12 -3
  6. package/dist/_utils/props.d.ts +1 -1
  7. package/dist/_utils/util.d.ts +14 -0
  8. package/dist/common/echarts/ECharts.d.ts +1 -0
  9. package/dist/container/border/props.d.ts +67 -57
  10. package/dist/container/index.d.ts +1 -0
  11. package/dist/container/modal/Modal.vue.d.ts +47 -31
  12. package/dist/container/modal/props.d.ts +29 -18
  13. package/dist/container/tabs/Tabs.vue.d.ts +271 -0
  14. package/dist/container/tabs/index.d.ts +3 -0
  15. package/dist/container/tabs/props.d.ts +219 -0
  16. package/dist/control/button/Button.vue.d.ts +53 -53
  17. package/dist/control/button/props.d.ts +49 -49
  18. package/dist/control/date-picker/DatePicker.vue.d.ts +61 -61
  19. package/dist/control/date-picker/props.d.ts +7 -7
  20. package/dist/control/input/Input.vue.d.ts +59 -59
  21. package/dist/control/input/props.d.ts +53 -53
  22. package/dist/control/range-picker/RangePicker.vue.d.ts +55 -55
  23. package/dist/control/range-picker/props.d.ts +51 -51
  24. package/dist/control/select/Select.vue.d.ts +65 -61
  25. package/dist/control/select/props.d.ts +53 -53
  26. package/dist/graph/bar/Bar.vue.d.ts +304 -57
  27. package/dist/graph/bar/props.d.ts +277 -49
  28. package/dist/graph/custom-graph/CustomGraph.vue.d.ts +57 -57
  29. package/dist/graph/custom-graph/props.d.ts +53 -53
  30. package/dist/graph/line/Line.vue.d.ts +286 -109
  31. package/dist/graph/line/props.d.ts +235 -49
  32. package/dist/graph/pie/Pie.vue.d.ts +332 -114
  33. package/dist/graph/pie/props.d.ts +279 -57
  34. package/dist/graph/scatter/Scatter.vue.d.ts +157 -209
  35. package/dist/graph/scatter/props.d.ts +148 -123
  36. package/dist/index.esm.js +2 -2
  37. package/dist/index.umd.js +2 -2
  38. package/dist/media/image/Image.vue.d.ts +55 -55
  39. package/dist/media/image/props.d.ts +51 -51
  40. package/dist/table/table/Table.vue.d.ts +208 -67
  41. package/dist/table/table/props.d.ts +160 -62
  42. package/dist/text/index.d.ts +2 -0
  43. package/dist/text/list/List.vue.d.ts +471 -0
  44. package/dist/text/list/index.d.ts +3 -0
  45. package/dist/text/list/props.d.ts +367 -0
  46. package/dist/text/text/Text.vue.d.ts +132 -43
  47. package/dist/text/text/props.d.ts +122 -38
  48. package/dist/text/time-display/TimeDisplay.vue.d.ts +385 -0
  49. package/dist/text/time-display/index.d.ts +3 -0
  50. package/dist/text/time-display/props.d.ts +275 -0
  51. package/package.json +1 -1
  52. package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
  53. package/dist/_utils/request.d.ts +0 -2
@@ -21,6 +21,11 @@ export interface LineProps extends Props {
21
21
  yAxisSplitLineStyleColor: string;
22
22
  yAxisLabelColor: string;
23
23
  yAxisLineStyleColor: string;
24
+ dataFieldNames: {
25
+ name: string;
26
+ value: string;
27
+ type: string;
28
+ };
24
29
  }
25
30
  export declare const lineProps: LineProps;
26
31
  export declare const lineComponentProps: {
@@ -30,8 +35,12 @@ export declare const lineComponentProps: {
30
35
  } | {
31
36
  type: any;
32
37
  default: string | number | boolean | Data | string[] | {
38
+ name: string;
39
+ value: string;
40
+ type: string;
41
+ } | import("../../_utils/props").Events | {
33
42
  [key: string]: any;
34
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
43
+ } | import("../../_utils/props").RequestParams;
35
44
  };
36
45
  titleText: {
37
46
  type?: undefined;
@@ -39,8 +48,12 @@ export declare const lineComponentProps: {
39
48
  } | {
40
49
  type: any;
41
50
  default: string | number | boolean | Data | string[] | {
51
+ name: string;
52
+ value: string;
53
+ type: string;
54
+ } | import("../../_utils/props").Events | {
42
55
  [key: string]: any;
43
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
56
+ } | import("../../_utils/props").RequestParams;
44
57
  };
45
58
  titleSubtext: {
46
59
  type?: undefined;
@@ -48,8 +61,12 @@ export declare const lineComponentProps: {
48
61
  } | {
49
62
  type: any;
50
63
  default: string | number | boolean | Data | string[] | {
64
+ name: string;
65
+ value: string;
66
+ type: string;
67
+ } | import("../../_utils/props").Events | {
51
68
  [key: string]: any;
52
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
69
+ } | import("../../_utils/props").RequestParams;
53
70
  };
54
71
  titleLeft: {
55
72
  type?: undefined;
@@ -57,8 +74,12 @@ export declare const lineComponentProps: {
57
74
  } | {
58
75
  type: any;
59
76
  default: string | number | boolean | Data | string[] | {
77
+ name: string;
78
+ value: string;
79
+ type: string;
80
+ } | import("../../_utils/props").Events | {
60
81
  [key: string]: any;
61
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
82
+ } | import("../../_utils/props").RequestParams;
62
83
  };
63
84
  colors: {
64
85
  type?: undefined;
@@ -66,8 +87,12 @@ export declare const lineComponentProps: {
66
87
  } | {
67
88
  type: any;
68
89
  default: string | number | boolean | Data | string[] | {
90
+ name: string;
91
+ value: string;
92
+ type: string;
93
+ } | import("../../_utils/props").Events | {
69
94
  [key: string]: any;
70
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
95
+ } | import("../../_utils/props").RequestParams;
71
96
  };
72
97
  legendShow: {
73
98
  type?: undefined;
@@ -75,8 +100,12 @@ export declare const lineComponentProps: {
75
100
  } | {
76
101
  type: any;
77
102
  default: string | number | boolean | Data | string[] | {
103
+ name: string;
104
+ value: string;
105
+ type: string;
106
+ } | import("../../_utils/props").Events | {
78
107
  [key: string]: any;
79
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
108
+ } | import("../../_utils/props").RequestParams;
80
109
  };
81
110
  legendLeft: {
82
111
  type?: undefined;
@@ -84,8 +113,12 @@ export declare const lineComponentProps: {
84
113
  } | {
85
114
  type: any;
86
115
  default: string | number | boolean | Data | string[] | {
116
+ name: string;
117
+ value: string;
118
+ type: string;
119
+ } | import("../../_utils/props").Events | {
87
120
  [key: string]: any;
88
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
121
+ } | import("../../_utils/props").RequestParams;
89
122
  };
90
123
  legendTop: {
91
124
  type?: undefined;
@@ -93,8 +126,12 @@ export declare const lineComponentProps: {
93
126
  } | {
94
127
  type: any;
95
128
  default: string | number | boolean | Data | string[] | {
129
+ name: string;
130
+ value: string;
131
+ type: string;
132
+ } | import("../../_utils/props").Events | {
96
133
  [key: string]: any;
97
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
134
+ } | import("../../_utils/props").RequestParams;
98
135
  };
99
136
  legendOrient: {
100
137
  type?: undefined;
@@ -102,8 +139,12 @@ export declare const lineComponentProps: {
102
139
  } | {
103
140
  type: any;
104
141
  default: string | number | boolean | Data | string[] | {
142
+ name: string;
143
+ value: string;
144
+ type: string;
145
+ } | import("../../_utils/props").Events | {
105
146
  [key: string]: any;
106
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
147
+ } | import("../../_utils/props").RequestParams;
107
148
  };
108
149
  symbolSize: {
109
150
  type?: undefined;
@@ -111,8 +152,12 @@ export declare const lineComponentProps: {
111
152
  } | {
112
153
  type: any;
113
154
  default: string | number | boolean | Data | string[] | {
155
+ name: string;
156
+ value: string;
157
+ type: string;
158
+ } | import("../../_utils/props").Events | {
114
159
  [key: string]: any;
115
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
160
+ } | import("../../_utils/props").RequestParams;
116
161
  };
117
162
  lineStyleWidth: {
118
163
  type?: undefined;
@@ -120,8 +165,12 @@ export declare const lineComponentProps: {
120
165
  } | {
121
166
  type: any;
122
167
  default: string | number | boolean | Data | string[] | {
168
+ name: string;
169
+ value: string;
170
+ type: string;
171
+ } | import("../../_utils/props").Events | {
123
172
  [key: string]: any;
124
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
173
+ } | import("../../_utils/props").RequestParams;
125
174
  };
126
175
  smooth: {
127
176
  type?: undefined;
@@ -129,8 +178,12 @@ export declare const lineComponentProps: {
129
178
  } | {
130
179
  type: any;
131
180
  default: string | number | boolean | Data | string[] | {
181
+ name: string;
182
+ value: string;
183
+ type: string;
184
+ } | import("../../_utils/props").Events | {
132
185
  [key: string]: any;
133
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
186
+ } | import("../../_utils/props").RequestParams;
134
187
  };
135
188
  xAxisSplitLineShow: {
136
189
  type?: undefined;
@@ -138,8 +191,12 @@ export declare const lineComponentProps: {
138
191
  } | {
139
192
  type: any;
140
193
  default: string | number | boolean | Data | string[] | {
194
+ name: string;
195
+ value: string;
196
+ type: string;
197
+ } | import("../../_utils/props").Events | {
141
198
  [key: string]: any;
142
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
199
+ } | import("../../_utils/props").RequestParams;
143
200
  };
144
201
  xAxisLabelColor: {
145
202
  type?: undefined;
@@ -147,8 +204,12 @@ export declare const lineComponentProps: {
147
204
  } | {
148
205
  type: any;
149
206
  default: string | number | boolean | Data | string[] | {
207
+ name: string;
208
+ value: string;
209
+ type: string;
210
+ } | import("../../_utils/props").Events | {
150
211
  [key: string]: any;
151
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
212
+ } | import("../../_utils/props").RequestParams;
152
213
  };
153
214
  xAxisLineStyleColor: {
154
215
  type?: undefined;
@@ -156,8 +217,12 @@ export declare const lineComponentProps: {
156
217
  } | {
157
218
  type: any;
158
219
  default: string | number | boolean | Data | string[] | {
220
+ name: string;
221
+ value: string;
222
+ type: string;
223
+ } | import("../../_utils/props").Events | {
159
224
  [key: string]: any;
160
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
225
+ } | import("../../_utils/props").RequestParams;
161
226
  };
162
227
  xAxisSplitLineStyleColor: {
163
228
  type?: undefined;
@@ -165,8 +230,12 @@ export declare const lineComponentProps: {
165
230
  } | {
166
231
  type: any;
167
232
  default: string | number | boolean | Data | string[] | {
233
+ name: string;
234
+ value: string;
235
+ type: string;
236
+ } | import("../../_utils/props").Events | {
168
237
  [key: string]: any;
169
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
238
+ } | import("../../_utils/props").RequestParams;
170
239
  };
171
240
  xAxisTickShow: {
172
241
  type?: undefined;
@@ -174,8 +243,12 @@ export declare const lineComponentProps: {
174
243
  } | {
175
244
  type: any;
176
245
  default: string | number | boolean | Data | string[] | {
246
+ name: string;
247
+ value: string;
248
+ type: string;
249
+ } | import("../../_utils/props").Events | {
177
250
  [key: string]: any;
178
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
251
+ } | import("../../_utils/props").RequestParams;
179
252
  };
180
253
  yAxisSplitLineShow: {
181
254
  type?: undefined;
@@ -183,8 +256,12 @@ export declare const lineComponentProps: {
183
256
  } | {
184
257
  type: any;
185
258
  default: string | number | boolean | Data | string[] | {
259
+ name: string;
260
+ value: string;
261
+ type: string;
262
+ } | import("../../_utils/props").Events | {
186
263
  [key: string]: any;
187
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
264
+ } | import("../../_utils/props").RequestParams;
188
265
  };
189
266
  yAxisSplitLineStyleColor: {
190
267
  type?: undefined;
@@ -192,8 +269,12 @@ export declare const lineComponentProps: {
192
269
  } | {
193
270
  type: any;
194
271
  default: string | number | boolean | Data | string[] | {
272
+ name: string;
273
+ value: string;
274
+ type: string;
275
+ } | import("../../_utils/props").Events | {
195
276
  [key: string]: any;
196
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
277
+ } | import("../../_utils/props").RequestParams;
197
278
  };
198
279
  yAxisLabelColor: {
199
280
  type?: undefined;
@@ -201,8 +282,12 @@ export declare const lineComponentProps: {
201
282
  } | {
202
283
  type: any;
203
284
  default: string | number | boolean | Data | string[] | {
285
+ name: string;
286
+ value: string;
287
+ type: string;
288
+ } | import("../../_utils/props").Events | {
204
289
  [key: string]: any;
205
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
290
+ } | import("../../_utils/props").RequestParams;
206
291
  };
207
292
  yAxisLineStyleColor: {
208
293
  type?: undefined;
@@ -210,8 +295,25 @@ export declare const lineComponentProps: {
210
295
  } | {
211
296
  type: any;
212
297
  default: string | number | boolean | Data | string[] | {
298
+ name: string;
299
+ value: string;
300
+ type: string;
301
+ } | import("../../_utils/props").Events | {
213
302
  [key: string]: any;
214
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
303
+ } | import("../../_utils/props").RequestParams;
304
+ };
305
+ dataFieldNames: {
306
+ type?: undefined;
307
+ default?: undefined;
308
+ } | {
309
+ type: any;
310
+ default: string | number | boolean | Data | string[] | {
311
+ name: string;
312
+ value: string;
313
+ type: string;
314
+ } | import("../../_utils/props").Events | {
315
+ [key: string]: any;
316
+ } | import("../../_utils/props").RequestParams;
215
317
  };
216
318
  id: {
217
319
  type?: undefined;
@@ -219,8 +321,12 @@ export declare const lineComponentProps: {
219
321
  } | {
220
322
  type: any;
221
323
  default: string | number | boolean | Data | string[] | {
324
+ name: string;
325
+ value: string;
326
+ type: string;
327
+ } | import("../../_utils/props").Events | {
222
328
  [key: string]: any;
223
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
329
+ } | import("../../_utils/props").RequestParams;
224
330
  };
225
331
  name: {
226
332
  type?: undefined;
@@ -228,8 +334,12 @@ export declare const lineComponentProps: {
228
334
  } | {
229
335
  type: any;
230
336
  default: string | number | boolean | Data | string[] | {
337
+ name: string;
338
+ value: string;
339
+ type: string;
340
+ } | import("../../_utils/props").Events | {
231
341
  [key: string]: any;
232
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
342
+ } | import("../../_utils/props").RequestParams;
233
343
  };
234
344
  keyName: {
235
345
  type?: undefined;
@@ -237,8 +347,12 @@ export declare const lineComponentProps: {
237
347
  } | {
238
348
  type: any;
239
349
  default: string | number | boolean | Data | string[] | {
350
+ name: string;
351
+ value: string;
352
+ type: string;
353
+ } | import("../../_utils/props").Events | {
240
354
  [key: string]: any;
241
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
355
+ } | import("../../_utils/props").RequestParams;
242
356
  };
243
357
  type: {
244
358
  type?: undefined;
@@ -246,8 +360,12 @@ export declare const lineComponentProps: {
246
360
  } | {
247
361
  type: any;
248
362
  default: string | number | boolean | Data | string[] | {
363
+ name: string;
364
+ value: string;
365
+ type: string;
366
+ } | import("../../_utils/props").Events | {
249
367
  [key: string]: any;
250
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
368
+ } | import("../../_utils/props").RequestParams;
251
369
  };
252
370
  width: {
253
371
  type?: undefined;
@@ -255,8 +373,12 @@ export declare const lineComponentProps: {
255
373
  } | {
256
374
  type: any;
257
375
  default: string | number | boolean | Data | string[] | {
376
+ name: string;
377
+ value: string;
378
+ type: string;
379
+ } | import("../../_utils/props").Events | {
258
380
  [key: string]: any;
259
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
381
+ } | import("../../_utils/props").RequestParams;
260
382
  };
261
383
  height: {
262
384
  type?: undefined;
@@ -264,8 +386,12 @@ export declare const lineComponentProps: {
264
386
  } | {
265
387
  type: any;
266
388
  default: string | number | boolean | Data | string[] | {
389
+ name: string;
390
+ value: string;
391
+ type: string;
392
+ } | import("../../_utils/props").Events | {
267
393
  [key: string]: any;
268
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
394
+ } | import("../../_utils/props").RequestParams;
269
395
  };
270
396
  position: {
271
397
  type?: undefined;
@@ -273,8 +399,12 @@ export declare const lineComponentProps: {
273
399
  } | {
274
400
  type: any;
275
401
  default: string | number | boolean | Data | string[] | {
402
+ name: string;
403
+ value: string;
404
+ type: string;
405
+ } | import("../../_utils/props").Events | {
276
406
  [key: string]: any;
277
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
407
+ } | import("../../_utils/props").RequestParams;
278
408
  };
279
409
  top: {
280
410
  type?: undefined;
@@ -282,8 +412,12 @@ export declare const lineComponentProps: {
282
412
  } | {
283
413
  type: any;
284
414
  default: string | number | boolean | Data | string[] | {
415
+ name: string;
416
+ value: string;
417
+ type: string;
418
+ } | import("../../_utils/props").Events | {
285
419
  [key: string]: any;
286
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
420
+ } | import("../../_utils/props").RequestParams;
287
421
  };
288
422
  left: {
289
423
  type?: undefined;
@@ -291,8 +425,12 @@ export declare const lineComponentProps: {
291
425
  } | {
292
426
  type: any;
293
427
  default: string | number | boolean | Data | string[] | {
428
+ name: string;
429
+ value: string;
430
+ type: string;
431
+ } | import("../../_utils/props").Events | {
294
432
  [key: string]: any;
295
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
433
+ } | import("../../_utils/props").RequestParams;
296
434
  };
297
435
  zIndex: {
298
436
  type?: undefined;
@@ -300,8 +438,12 @@ export declare const lineComponentProps: {
300
438
  } | {
301
439
  type: any;
302
440
  default: string | number | boolean | Data | string[] | {
441
+ name: string;
442
+ value: string;
443
+ type: string;
444
+ } | import("../../_utils/props").Events | {
303
445
  [key: string]: any;
304
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
446
+ } | import("../../_utils/props").RequestParams;
305
447
  };
306
448
  rotate: {
307
449
  type?: undefined;
@@ -309,8 +451,12 @@ export declare const lineComponentProps: {
309
451
  } | {
310
452
  type: any;
311
453
  default: string | number | boolean | Data | string[] | {
454
+ name: string;
455
+ value: string;
456
+ type: string;
457
+ } | import("../../_utils/props").Events | {
312
458
  [key: string]: any;
313
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
459
+ } | import("../../_utils/props").RequestParams;
314
460
  };
315
461
  isShow: {
316
462
  type?: undefined;
@@ -318,8 +464,12 @@ export declare const lineComponentProps: {
318
464
  } | {
319
465
  type: any;
320
466
  default: string | number | boolean | Data | string[] | {
467
+ name: string;
468
+ value: string;
469
+ type: string;
470
+ } | import("../../_utils/props").Events | {
321
471
  [key: string]: any;
322
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
472
+ } | import("../../_utils/props").RequestParams;
323
473
  };
324
474
  isRender: {
325
475
  type?: undefined;
@@ -327,8 +477,12 @@ export declare const lineComponentProps: {
327
477
  } | {
328
478
  type: any;
329
479
  default: string | number | boolean | Data | string[] | {
480
+ name: string;
481
+ value: string;
482
+ type: string;
483
+ } | import("../../_utils/props").Events | {
330
484
  [key: string]: any;
331
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
485
+ } | import("../../_utils/props").RequestParams;
332
486
  };
333
487
  isRequestData: {
334
488
  type?: undefined;
@@ -336,70 +490,102 @@ export declare const lineComponentProps: {
336
490
  } | {
337
491
  type: any;
338
492
  default: string | number | boolean | Data | string[] | {
493
+ name: string;
494
+ value: string;
495
+ type: string;
496
+ } | import("../../_utils/props").Events | {
339
497
  [key: string]: any;
340
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
498
+ } | import("../../_utils/props").RequestParams;
341
499
  };
342
- requestUrl: {
500
+ events: {
343
501
  type?: undefined;
344
502
  default?: undefined;
345
503
  } | {
346
504
  type: any;
347
505
  default: string | number | boolean | Data | string[] | {
506
+ name: string;
507
+ value: string;
508
+ type: string;
509
+ } | import("../../_utils/props").Events | {
348
510
  [key: string]: any;
349
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
511
+ } | import("../../_utils/props").RequestParams;
350
512
  };
351
- requestMethod: {
513
+ requestUrl: {
352
514
  type?: undefined;
353
515
  default?: undefined;
354
516
  } | {
355
517
  type: any;
356
518
  default: string | number | boolean | Data | string[] | {
519
+ name: string;
520
+ value: string;
521
+ type: string;
522
+ } | import("../../_utils/props").Events | {
357
523
  [key: string]: any;
358
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
524
+ } | import("../../_utils/props").RequestParams;
359
525
  };
360
- requestHeaders: {
526
+ requestMethod: {
361
527
  type?: undefined;
362
528
  default?: undefined;
363
529
  } | {
364
530
  type: any;
365
531
  default: string | number | boolean | Data | string[] | {
532
+ name: string;
533
+ value: string;
534
+ type: string;
535
+ } | import("../../_utils/props").Events | {
366
536
  [key: string]: any;
367
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
537
+ } | import("../../_utils/props").RequestParams;
368
538
  };
369
- isOpenRequestTimer: {
539
+ requestHeaders: {
370
540
  type?: undefined;
371
541
  default?: undefined;
372
542
  } | {
373
543
  type: any;
374
544
  default: string | number | boolean | Data | string[] | {
545
+ name: string;
546
+ value: string;
547
+ type: string;
548
+ } | import("../../_utils/props").Events | {
375
549
  [key: string]: any;
376
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
550
+ } | import("../../_utils/props").RequestParams;
377
551
  };
378
- requestInterval: {
552
+ isOpenRequestTimer: {
379
553
  type?: undefined;
380
554
  default?: undefined;
381
555
  } | {
382
556
  type: any;
383
557
  default: string | number | boolean | Data | string[] | {
558
+ name: string;
559
+ value: string;
560
+ type: string;
561
+ } | import("../../_utils/props").Events | {
384
562
  [key: string]: any;
385
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
563
+ } | import("../../_utils/props").RequestParams;
386
564
  };
387
- requestParams: {
565
+ requestInterval: {
388
566
  type?: undefined;
389
567
  default?: undefined;
390
568
  } | {
391
569
  type: any;
392
570
  default: string | number | boolean | Data | string[] | {
571
+ name: string;
572
+ value: string;
573
+ type: string;
574
+ } | import("../../_utils/props").Events | {
393
575
  [key: string]: any;
394
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
576
+ } | import("../../_utils/props").RequestParams;
395
577
  };
396
- events: {
578
+ requestParams: {
397
579
  type?: undefined;
398
580
  default?: undefined;
399
581
  } | {
400
582
  type: any;
401
583
  default: string | number | boolean | Data | string[] | {
584
+ name: string;
585
+ value: string;
586
+ type: string;
587
+ } | import("../../_utils/props").Events | {
402
588
  [key: string]: any;
403
- } | import("../../_utils/props").RequestParams | import("../../_utils/props").Events;
589
+ } | import("../../_utils/props").RequestParams;
404
590
  };
405
591
  };