@ecan-bi/datav 1.0.13 → 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.
- package/dist/_utils/constant.d.ts +1 -1
- package/dist/_utils/hooks/index.d.ts +1 -1
- package/dist/_utils/hooks/usePickEchartsData.d.ts +1 -1
- package/dist/_utils/hooks/useRequestData.d.ts +5 -13
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +12 -3
- package/dist/_utils/props.d.ts +1 -1
- package/dist/_utils/util.d.ts +14 -0
- package/dist/common/echarts/ECharts.d.ts +1 -0
- package/dist/container/border/props.d.ts +67 -57
- package/dist/container/index.d.ts +1 -0
- package/dist/container/modal/Modal.vue.d.ts +49 -32
- package/dist/container/modal/props.d.ts +29 -18
- package/dist/container/tabs/Tabs.vue.d.ts +271 -0
- package/dist/container/tabs/index.d.ts +3 -0
- package/dist/container/tabs/props.d.ts +219 -0
- package/dist/control/button/Button.vue.d.ts +53 -53
- package/dist/control/button/props.d.ts +49 -49
- package/dist/control/date-picker/DatePicker.vue.d.ts +61 -61
- package/dist/control/date-picker/props.d.ts +7 -7
- package/dist/control/input/Input.vue.d.ts +59 -59
- package/dist/control/input/props.d.ts +53 -53
- package/dist/control/range-picker/RangePicker.vue.d.ts +55 -55
- package/dist/control/range-picker/props.d.ts +51 -51
- package/dist/control/select/Select.vue.d.ts +65 -61
- package/dist/control/select/props.d.ts +53 -53
- package/dist/graph/bar/Bar.vue.d.ts +304 -57
- package/dist/graph/bar/props.d.ts +277 -49
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +57 -57
- package/dist/graph/custom-graph/props.d.ts +53 -53
- package/dist/graph/line/Line.vue.d.ts +286 -109
- package/dist/graph/line/props.d.ts +235 -49
- package/dist/graph/pie/Pie.vue.d.ts +332 -114
- package/dist/graph/pie/props.d.ts +279 -57
- package/dist/graph/scatter/Scatter.vue.d.ts +157 -209
- package/dist/graph/scatter/props.d.ts +148 -123
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +2 -2
- package/dist/media/image/Image.vue.d.ts +55 -55
- package/dist/media/image/props.d.ts +51 -51
- package/dist/table/table/Table.vue.d.ts +208 -67
- package/dist/table/table/props.d.ts +160 -62
- package/dist/text/index.d.ts +2 -0
- package/dist/text/list/List.vue.d.ts +471 -0
- package/dist/text/list/index.d.ts +3 -0
- package/dist/text/list/props.d.ts +367 -0
- package/dist/text/text/Text.vue.d.ts +132 -43
- package/dist/text/text/props.d.ts +122 -38
- package/dist/text/time-display/TimeDisplay.vue.d.ts +385 -0
- package/dist/text/time-display/index.d.ts +3 -0
- package/dist/text/time-display/props.d.ts +275 -0
- package/package.json +12 -5
- package/dist/_utils/hooks/useRequestParams.d.ts +0 -5
- package/dist/_utils/request.d.ts +0 -2
|
@@ -6,7 +6,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6
6
|
type: any;
|
|
7
7
|
default: string | number | boolean | {
|
|
8
8
|
[key: string]: any;
|
|
9
|
-
} | import("../../_utils/props").
|
|
9
|
+
} | import("../../_utils/props").Events | {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
} | import("../../_utils/props").RequestParams;
|
|
10
12
|
};
|
|
11
13
|
color: {
|
|
12
14
|
type?: undefined;
|
|
@@ -15,7 +17,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15
17
|
type: any;
|
|
16
18
|
default: string | number | boolean | {
|
|
17
19
|
[key: string]: any;
|
|
18
|
-
} | import("../../_utils/props").
|
|
20
|
+
} | import("../../_utils/props").Events | {
|
|
21
|
+
[key: string]: any;
|
|
22
|
+
} | import("../../_utils/props").RequestParams;
|
|
19
23
|
};
|
|
20
24
|
fontSize: {
|
|
21
25
|
type?: undefined;
|
|
@@ -24,7 +28,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
24
28
|
type: any;
|
|
25
29
|
default: string | number | boolean | {
|
|
26
30
|
[key: string]: any;
|
|
27
|
-
} | import("../../_utils/props").
|
|
31
|
+
} | import("../../_utils/props").Events | {
|
|
32
|
+
[key: string]: any;
|
|
33
|
+
} | import("../../_utils/props").RequestParams;
|
|
28
34
|
};
|
|
29
35
|
fontFamily: {
|
|
30
36
|
type?: undefined;
|
|
@@ -33,7 +39,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
39
|
type: any;
|
|
34
40
|
default: string | number | boolean | {
|
|
35
41
|
[key: string]: any;
|
|
36
|
-
} | import("../../_utils/props").
|
|
42
|
+
} | import("../../_utils/props").Events | {
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
} | import("../../_utils/props").RequestParams;
|
|
37
45
|
};
|
|
38
46
|
fontWeight: {
|
|
39
47
|
type?: undefined;
|
|
@@ -42,7 +50,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
42
50
|
type: any;
|
|
43
51
|
default: string | number | boolean | {
|
|
44
52
|
[key: string]: any;
|
|
45
|
-
} | import("../../_utils/props").
|
|
53
|
+
} | import("../../_utils/props").Events | {
|
|
54
|
+
[key: string]: any;
|
|
55
|
+
} | import("../../_utils/props").RequestParams;
|
|
46
56
|
};
|
|
47
57
|
textAlign: {
|
|
48
58
|
type?: undefined;
|
|
@@ -51,16 +61,20 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
61
|
type: any;
|
|
52
62
|
default: string | number | boolean | {
|
|
53
63
|
[key: string]: any;
|
|
54
|
-
} | import("../../_utils/props").
|
|
64
|
+
} | import("../../_utils/props").Events | {
|
|
65
|
+
[key: string]: any;
|
|
66
|
+
} | import("../../_utils/props").RequestParams;
|
|
55
67
|
};
|
|
56
|
-
|
|
68
|
+
verticalAlign: {
|
|
57
69
|
type?: undefined;
|
|
58
70
|
default?: undefined;
|
|
59
71
|
} | {
|
|
60
72
|
type: any;
|
|
61
73
|
default: string | number | boolean | {
|
|
62
74
|
[key: string]: any;
|
|
63
|
-
} | import("../../_utils/props").
|
|
75
|
+
} | import("../../_utils/props").Events | {
|
|
76
|
+
[key: string]: any;
|
|
77
|
+
} | import("../../_utils/props").RequestParams;
|
|
64
78
|
};
|
|
65
79
|
textShadow: {
|
|
66
80
|
type?: undefined;
|
|
@@ -69,7 +83,31 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
69
83
|
type: any;
|
|
70
84
|
default: string | number | boolean | {
|
|
71
85
|
[key: string]: any;
|
|
72
|
-
} | import("../../_utils/props").
|
|
86
|
+
} | import("../../_utils/props").Events | {
|
|
87
|
+
[key: string]: any;
|
|
88
|
+
} | import("../../_utils/props").RequestParams;
|
|
89
|
+
};
|
|
90
|
+
data: {
|
|
91
|
+
type?: undefined;
|
|
92
|
+
default?: undefined;
|
|
93
|
+
} | {
|
|
94
|
+
type: any;
|
|
95
|
+
default: string | number | boolean | {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
} | import("../../_utils/props").Events | {
|
|
98
|
+
[key: string]: any;
|
|
99
|
+
} | import("../../_utils/props").RequestParams;
|
|
100
|
+
};
|
|
101
|
+
variableColor: {
|
|
102
|
+
type?: undefined;
|
|
103
|
+
default?: undefined;
|
|
104
|
+
} | {
|
|
105
|
+
type: any;
|
|
106
|
+
default: string | number | boolean | {
|
|
107
|
+
[key: string]: any;
|
|
108
|
+
} | import("../../_utils/props").Events | {
|
|
109
|
+
[key: string]: any;
|
|
110
|
+
} | import("../../_utils/props").RequestParams;
|
|
73
111
|
};
|
|
74
112
|
id: {
|
|
75
113
|
type?: undefined;
|
|
@@ -78,7 +116,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
78
116
|
type: any;
|
|
79
117
|
default: string | number | boolean | {
|
|
80
118
|
[key: string]: any;
|
|
81
|
-
} | import("../../_utils/props").
|
|
119
|
+
} | import("../../_utils/props").Events | {
|
|
120
|
+
[key: string]: any;
|
|
121
|
+
} | import("../../_utils/props").RequestParams;
|
|
82
122
|
};
|
|
83
123
|
name: {
|
|
84
124
|
type?: undefined;
|
|
@@ -87,7 +127,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
87
127
|
type: any;
|
|
88
128
|
default: string | number | boolean | {
|
|
89
129
|
[key: string]: any;
|
|
90
|
-
} | import("../../_utils/props").
|
|
130
|
+
} | import("../../_utils/props").Events | {
|
|
131
|
+
[key: string]: any;
|
|
132
|
+
} | import("../../_utils/props").RequestParams;
|
|
91
133
|
};
|
|
92
134
|
keyName: {
|
|
93
135
|
type?: undefined;
|
|
@@ -96,7 +138,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
96
138
|
type: any;
|
|
97
139
|
default: string | number | boolean | {
|
|
98
140
|
[key: string]: any;
|
|
99
|
-
} | import("../../_utils/props").
|
|
141
|
+
} | import("../../_utils/props").Events | {
|
|
142
|
+
[key: string]: any;
|
|
143
|
+
} | import("../../_utils/props").RequestParams;
|
|
100
144
|
};
|
|
101
145
|
type: {
|
|
102
146
|
type?: undefined;
|
|
@@ -105,7 +149,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
105
149
|
type: any;
|
|
106
150
|
default: string | number | boolean | {
|
|
107
151
|
[key: string]: any;
|
|
108
|
-
} | import("../../_utils/props").
|
|
152
|
+
} | import("../../_utils/props").Events | {
|
|
153
|
+
[key: string]: any;
|
|
154
|
+
} | import("../../_utils/props").RequestParams;
|
|
109
155
|
};
|
|
110
156
|
width: {
|
|
111
157
|
type?: undefined;
|
|
@@ -114,7 +160,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
114
160
|
type: any;
|
|
115
161
|
default: string | number | boolean | {
|
|
116
162
|
[key: string]: any;
|
|
117
|
-
} | import("../../_utils/props").
|
|
163
|
+
} | import("../../_utils/props").Events | {
|
|
164
|
+
[key: string]: any;
|
|
165
|
+
} | import("../../_utils/props").RequestParams;
|
|
118
166
|
};
|
|
119
167
|
height: {
|
|
120
168
|
type?: undefined;
|
|
@@ -123,7 +171,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
123
171
|
type: any;
|
|
124
172
|
default: string | number | boolean | {
|
|
125
173
|
[key: string]: any;
|
|
126
|
-
} | import("../../_utils/props").
|
|
174
|
+
} | import("../../_utils/props").Events | {
|
|
175
|
+
[key: string]: any;
|
|
176
|
+
} | import("../../_utils/props").RequestParams;
|
|
127
177
|
};
|
|
128
178
|
position: {
|
|
129
179
|
type?: undefined;
|
|
@@ -132,7 +182,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
132
182
|
type: any;
|
|
133
183
|
default: string | number | boolean | {
|
|
134
184
|
[key: string]: any;
|
|
135
|
-
} | import("../../_utils/props").
|
|
185
|
+
} | import("../../_utils/props").Events | {
|
|
186
|
+
[key: string]: any;
|
|
187
|
+
} | import("../../_utils/props").RequestParams;
|
|
136
188
|
};
|
|
137
189
|
top: {
|
|
138
190
|
type?: undefined;
|
|
@@ -141,7 +193,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
141
193
|
type: any;
|
|
142
194
|
default: string | number | boolean | {
|
|
143
195
|
[key: string]: any;
|
|
144
|
-
} | import("../../_utils/props").
|
|
196
|
+
} | import("../../_utils/props").Events | {
|
|
197
|
+
[key: string]: any;
|
|
198
|
+
} | import("../../_utils/props").RequestParams;
|
|
145
199
|
};
|
|
146
200
|
left: {
|
|
147
201
|
type?: undefined;
|
|
@@ -150,7 +204,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
150
204
|
type: any;
|
|
151
205
|
default: string | number | boolean | {
|
|
152
206
|
[key: string]: any;
|
|
153
|
-
} | import("../../_utils/props").
|
|
207
|
+
} | import("../../_utils/props").Events | {
|
|
208
|
+
[key: string]: any;
|
|
209
|
+
} | import("../../_utils/props").RequestParams;
|
|
154
210
|
};
|
|
155
211
|
zIndex: {
|
|
156
212
|
type?: undefined;
|
|
@@ -159,7 +215,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
159
215
|
type: any;
|
|
160
216
|
default: string | number | boolean | {
|
|
161
217
|
[key: string]: any;
|
|
162
|
-
} | import("../../_utils/props").
|
|
218
|
+
} | import("../../_utils/props").Events | {
|
|
219
|
+
[key: string]: any;
|
|
220
|
+
} | import("../../_utils/props").RequestParams;
|
|
163
221
|
};
|
|
164
222
|
rotate: {
|
|
165
223
|
type?: undefined;
|
|
@@ -168,7 +226,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
168
226
|
type: any;
|
|
169
227
|
default: string | number | boolean | {
|
|
170
228
|
[key: string]: any;
|
|
171
|
-
} | import("../../_utils/props").
|
|
229
|
+
} | import("../../_utils/props").Events | {
|
|
230
|
+
[key: string]: any;
|
|
231
|
+
} | import("../../_utils/props").RequestParams;
|
|
172
232
|
};
|
|
173
233
|
isShow: {
|
|
174
234
|
type?: undefined;
|
|
@@ -177,7 +237,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
177
237
|
type: any;
|
|
178
238
|
default: string | number | boolean | {
|
|
179
239
|
[key: string]: any;
|
|
180
|
-
} | import("../../_utils/props").
|
|
240
|
+
} | import("../../_utils/props").Events | {
|
|
241
|
+
[key: string]: any;
|
|
242
|
+
} | import("../../_utils/props").RequestParams;
|
|
181
243
|
};
|
|
182
244
|
isRender: {
|
|
183
245
|
type?: undefined;
|
|
@@ -186,7 +248,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
186
248
|
type: any;
|
|
187
249
|
default: string | number | boolean | {
|
|
188
250
|
[key: string]: any;
|
|
189
|
-
} | import("../../_utils/props").
|
|
251
|
+
} | import("../../_utils/props").Events | {
|
|
252
|
+
[key: string]: any;
|
|
253
|
+
} | import("../../_utils/props").RequestParams;
|
|
190
254
|
};
|
|
191
255
|
isRequestData: {
|
|
192
256
|
type?: undefined;
|
|
@@ -195,73 +259,90 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
195
259
|
type: any;
|
|
196
260
|
default: string | number | boolean | {
|
|
197
261
|
[key: string]: any;
|
|
198
|
-
} | import("../../_utils/props").
|
|
262
|
+
} | import("../../_utils/props").Events | {
|
|
263
|
+
[key: string]: any;
|
|
264
|
+
} | import("../../_utils/props").RequestParams;
|
|
199
265
|
};
|
|
200
|
-
|
|
266
|
+
events: {
|
|
201
267
|
type?: undefined;
|
|
202
268
|
default?: undefined;
|
|
203
269
|
} | {
|
|
204
270
|
type: any;
|
|
205
271
|
default: string | number | boolean | {
|
|
206
272
|
[key: string]: any;
|
|
207
|
-
} | import("../../_utils/props").
|
|
273
|
+
} | import("../../_utils/props").Events | {
|
|
274
|
+
[key: string]: any;
|
|
275
|
+
} | import("../../_utils/props").RequestParams;
|
|
208
276
|
};
|
|
209
|
-
|
|
277
|
+
requestUrl: {
|
|
210
278
|
type?: undefined;
|
|
211
279
|
default?: undefined;
|
|
212
280
|
} | {
|
|
213
281
|
type: any;
|
|
214
282
|
default: string | number | boolean | {
|
|
215
283
|
[key: string]: any;
|
|
216
|
-
} | import("../../_utils/props").
|
|
284
|
+
} | import("../../_utils/props").Events | {
|
|
285
|
+
[key: string]: any;
|
|
286
|
+
} | import("../../_utils/props").RequestParams;
|
|
217
287
|
};
|
|
218
|
-
|
|
288
|
+
requestMethod: {
|
|
219
289
|
type?: undefined;
|
|
220
290
|
default?: undefined;
|
|
221
291
|
} | {
|
|
222
292
|
type: any;
|
|
223
293
|
default: string | number | boolean | {
|
|
224
294
|
[key: string]: any;
|
|
225
|
-
} | import("../../_utils/props").
|
|
295
|
+
} | import("../../_utils/props").Events | {
|
|
296
|
+
[key: string]: any;
|
|
297
|
+
} | import("../../_utils/props").RequestParams;
|
|
226
298
|
};
|
|
227
|
-
|
|
299
|
+
requestHeaders: {
|
|
228
300
|
type?: undefined;
|
|
229
301
|
default?: undefined;
|
|
230
302
|
} | {
|
|
231
303
|
type: any;
|
|
232
304
|
default: string | number | boolean | {
|
|
233
305
|
[key: string]: any;
|
|
234
|
-
} | import("../../_utils/props").
|
|
306
|
+
} | import("../../_utils/props").Events | {
|
|
307
|
+
[key: string]: any;
|
|
308
|
+
} | import("../../_utils/props").RequestParams;
|
|
235
309
|
};
|
|
236
|
-
|
|
310
|
+
isOpenRequestTimer: {
|
|
237
311
|
type?: undefined;
|
|
238
312
|
default?: undefined;
|
|
239
313
|
} | {
|
|
240
314
|
type: any;
|
|
241
315
|
default: string | number | boolean | {
|
|
242
316
|
[key: string]: any;
|
|
243
|
-
} | import("../../_utils/props").
|
|
317
|
+
} | import("../../_utils/props").Events | {
|
|
318
|
+
[key: string]: any;
|
|
319
|
+
} | import("../../_utils/props").RequestParams;
|
|
244
320
|
};
|
|
245
|
-
|
|
321
|
+
requestInterval: {
|
|
246
322
|
type?: undefined;
|
|
247
323
|
default?: undefined;
|
|
248
324
|
} | {
|
|
249
325
|
type: any;
|
|
250
326
|
default: string | number | boolean | {
|
|
251
327
|
[key: string]: any;
|
|
252
|
-
} | import("../../_utils/props").
|
|
328
|
+
} | import("../../_utils/props").Events | {
|
|
329
|
+
[key: string]: any;
|
|
330
|
+
} | import("../../_utils/props").RequestParams;
|
|
253
331
|
};
|
|
254
|
-
|
|
332
|
+
requestParams: {
|
|
255
333
|
type?: undefined;
|
|
256
334
|
default?: undefined;
|
|
257
335
|
} | {
|
|
258
336
|
type: any;
|
|
259
337
|
default: string | number | boolean | {
|
|
260
338
|
[key: string]: any;
|
|
261
|
-
} | import("../../_utils/props").
|
|
339
|
+
} | import("../../_utils/props").Events | {
|
|
340
|
+
[key: string]: any;
|
|
341
|
+
} | import("../../_utils/props").RequestParams;
|
|
262
342
|
};
|
|
263
343
|
}, {
|
|
264
344
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
345
|
+
myText: import("vue").ComputedRef<string>;
|
|
265
346
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
266
347
|
text?: unknown;
|
|
267
348
|
color?: unknown;
|
|
@@ -269,8 +350,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
269
350
|
fontFamily?: unknown;
|
|
270
351
|
fontWeight?: unknown;
|
|
271
352
|
textAlign?: unknown;
|
|
272
|
-
|
|
353
|
+
verticalAlign?: unknown;
|
|
273
354
|
textShadow?: unknown;
|
|
355
|
+
data?: unknown;
|
|
356
|
+
variableColor?: unknown;
|
|
274
357
|
id?: unknown;
|
|
275
358
|
name?: unknown;
|
|
276
359
|
keyName?: unknown;
|
|
@@ -285,13 +368,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
285
368
|
isShow?: unknown;
|
|
286
369
|
isRender?: unknown;
|
|
287
370
|
isRequestData?: unknown;
|
|
371
|
+
events?: unknown;
|
|
288
372
|
requestUrl?: unknown;
|
|
289
373
|
requestMethod?: unknown;
|
|
290
374
|
requestHeaders?: unknown;
|
|
291
375
|
isOpenRequestTimer?: unknown;
|
|
292
376
|
requestInterval?: unknown;
|
|
293
377
|
requestParams?: unknown;
|
|
294
|
-
events?: unknown;
|
|
295
378
|
} & {} & {
|
|
296
379
|
type?: string | number | boolean | {
|
|
297
380
|
[key: string]: any;
|
|
@@ -314,12 +397,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
314
397
|
textAlign?: string | number | boolean | {
|
|
315
398
|
[key: string]: any;
|
|
316
399
|
};
|
|
317
|
-
|
|
400
|
+
verticalAlign?: string | number | boolean | {
|
|
318
401
|
[key: string]: any;
|
|
319
402
|
};
|
|
320
403
|
textShadow?: string | number | boolean | {
|
|
321
404
|
[key: string]: any;
|
|
322
405
|
};
|
|
406
|
+
data?: string | number | boolean | {
|
|
407
|
+
[key: string]: any;
|
|
408
|
+
};
|
|
409
|
+
variableColor?: string | number | boolean | {
|
|
410
|
+
[key: string]: any;
|
|
411
|
+
};
|
|
323
412
|
id?: string | number | boolean | {
|
|
324
413
|
[key: string]: any;
|
|
325
414
|
};
|
|
@@ -359,6 +448,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
359
448
|
isRequestData?: string | number | boolean | {
|
|
360
449
|
[key: string]: any;
|
|
361
450
|
};
|
|
451
|
+
events?: string | number | boolean | {
|
|
452
|
+
[key: string]: any;
|
|
453
|
+
};
|
|
362
454
|
requestUrl?: string | number | boolean | {
|
|
363
455
|
[key: string]: any;
|
|
364
456
|
};
|
|
@@ -377,8 +469,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
377
469
|
requestParams?: string | number | boolean | {
|
|
378
470
|
[key: string]: any;
|
|
379
471
|
};
|
|
380
|
-
events?: string | number | boolean | {
|
|
381
|
-
[key: string]: any;
|
|
382
|
-
};
|
|
383
472
|
}>, {}>;
|
|
384
473
|
export default _default;
|