sd-render 1.0.25 → 1.0.26
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/package.json +1 -1
- package/{sd-lib-Beap5Rlw.js → sd-lib-BRDqWpkQ.js} +3 -3
- package/{sd-render-E0INO1rV.js → sd-render-DK3Yjbxt.js} +2 -2
- package/sd-render.es.js +2 -2
- package/sd-render.style.css +1 -1
- package/types/src/components/input3/eltiptap/widget/ExtensionViews/ImageView.vue.d.ts +128 -622
- package/types/src/components/input3/eltiptap/widget/ExtensionViews/TaskItemView.vue.d.ts +109 -623
- package/types/src/components/input3/eltiptap/widget/MenuCommands/AddYoutubeCommandButton.vue.d.ts +541 -4734
- package/types/src/components/input3/eltiptap/widget/MenuCommands/ColorPopover.vue.d.ts +314 -1649
- package/types/src/components/input3/eltiptap/widget/MenuCommands/CommandButton.vue.d.ts +117 -1061
- package/types/src/components/input3/eltiptap/widget/MenuCommands/FontFamilyDropdown.vue.d.ts +1925 -645
- package/types/src/components/input3/eltiptap/widget/MenuCommands/FontSizeDropdown.vue.d.ts +1923 -645
- package/types/src/components/input3/eltiptap/widget/MenuCommands/HeadingDropdown.vue.d.ts +1923 -645
- package/types/src/components/input3/eltiptap/widget/MenuCommands/HighlightPopover.vue.d.ts +314 -1649
- package/types/src/components/input3/eltiptap/widget/MenuCommands/Image/EditImageCommandButton.vue.d.ts +444 -4366
- package/types/src/components/input3/eltiptap/widget/MenuCommands/Image/ImageDisplayCommandButton.vue.d.ts +129 -623
- package/types/src/components/input3/eltiptap/widget/MenuCommands/Image/InsertImageCommandButton.vue.d.ts +291 -1843
- package/types/src/components/input3/eltiptap/widget/MenuCommands/LineHeightDropdown.vue.d.ts +1923 -645
- package/types/src/components/input3/eltiptap/widget/MenuCommands/Link/AddLinkCommandButton.vue.d.ts +541 -4734
- package/types/src/components/input3/eltiptap/widget/MenuCommands/Link/EditLinkCommandButton.vue.d.ts +541 -4734
- package/types/src/components/input3/eltiptap/widget/MenuCommands/Link/UploadFileCommandButton.vue.d.ts +541 -4734
- package/types/src/components/input3/eltiptap/widget/MenuCommands/TablePopover/CreateTablePopover.vue.d.ts +129 -623
- package/types/src/components/input3/eltiptap/widget/MenuCommands/TablePopover/index.vue.d.ts +129 -623
- package/types/src/components/sdwidget/SDImportAndModified.vue.d.ts +1 -1
- package/types/src/components/sdwidget/SDImportData.vue.d.ts +1 -1
- package/types/src/components/sdwidget/SDImportMapData.vue.d.ts +1 -1
- package/types/src/components/sdwidget/SdCrudForm.vue.d.ts +38 -30
- package/types/src/components/sdwidget/SdCrudPopupForm.vue.d.ts +38 -30
- package/types/src/components/sdwidget/SdFormSchema.vue.d.ts +48 -1362
- package/types/src/components/sdwidget/SdFormSchemaForm.vue.d.ts +48 -1362
- package/types/src/components/sdwidget/SdGallery.vue.d.ts +144 -616
- package/types/src/components/sdwidget/SdReport.vue.d.ts +38 -30
- package/types/src/types/Connect.d.ts +1 -1
- package/types/src/types/StateStore.d.ts +1 -0
|
@@ -12,46 +12,31 @@ declare function __VLS_template(): {
|
|
|
12
12
|
imageRef: ({
|
|
13
13
|
$: import('vue').ComponentInternalInstance;
|
|
14
14
|
$data: {};
|
|
15
|
-
$props:
|
|
16
|
-
readonly
|
|
17
|
-
readonly
|
|
18
|
-
readonly
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
21
|
-
readonly
|
|
22
|
-
readonly
|
|
23
|
-
readonly
|
|
24
|
-
readonly minScale: number;
|
|
25
|
-
readonly maxScale: number;
|
|
26
|
-
readonly hideOnClickModal: boolean;
|
|
27
|
-
readonly showProgress: boolean;
|
|
28
|
-
readonly previewSrcList: string[];
|
|
29
|
-
readonly previewTeleported: boolean;
|
|
30
|
-
}> & Omit<{
|
|
31
|
-
readonly hideOnClickModal: boolean;
|
|
32
|
-
readonly src: string;
|
|
33
|
-
readonly fit: "" | "fill" | "contain" | "none" | "cover" | "scale-down";
|
|
34
|
-
readonly lazy: boolean;
|
|
35
|
-
readonly previewSrcList: string[];
|
|
36
|
-
readonly previewTeleported: boolean;
|
|
37
|
-
readonly initialIndex: number;
|
|
38
|
-
readonly infinite: boolean;
|
|
39
|
-
readonly closeOnPressEscape: boolean;
|
|
40
|
-
readonly zoomRate: number;
|
|
41
|
-
readonly scale: number;
|
|
42
|
-
readonly minScale: number;
|
|
43
|
-
readonly maxScale: number;
|
|
44
|
-
readonly showProgress: boolean;
|
|
45
|
-
readonly loading?: ("lazy" | "eager") | undefined;
|
|
46
|
-
readonly scrollContainer?: string | HTMLElement | undefined;
|
|
15
|
+
$props: {
|
|
16
|
+
readonly hideOnClickModal?: boolean | undefined;
|
|
17
|
+
readonly src?: string | undefined;
|
|
18
|
+
readonly fit?: import('element-plus').ImageFitType | undefined;
|
|
19
|
+
readonly loading?: "eager" | "lazy" | undefined;
|
|
20
|
+
readonly lazy?: boolean | undefined;
|
|
21
|
+
readonly scrollContainer?: (string | HTMLElement) | undefined;
|
|
22
|
+
readonly previewSrcList?: string[] | undefined;
|
|
23
|
+
readonly previewTeleported?: boolean | undefined;
|
|
47
24
|
readonly zIndex?: number | undefined;
|
|
48
|
-
readonly
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
25
|
+
readonly initialIndex?: number | undefined;
|
|
26
|
+
readonly infinite?: boolean | undefined;
|
|
27
|
+
readonly closeOnPressEscape?: boolean | undefined;
|
|
28
|
+
readonly zoomRate?: number | undefined;
|
|
29
|
+
readonly scale?: number | undefined;
|
|
30
|
+
readonly minScale?: number | undefined;
|
|
31
|
+
readonly maxScale?: number | undefined;
|
|
32
|
+
readonly showProgress?: boolean | undefined;
|
|
33
|
+
readonly crossorigin?: import('element-plus').ImageCrossorigin | undefined;
|
|
34
|
+
readonly onClose?: (() => any) | undefined | undefined;
|
|
35
|
+
readonly onError?: ((evt: Event) => any) | undefined | undefined;
|
|
36
|
+
readonly onLoad?: ((evt: Event) => any) | undefined | undefined;
|
|
37
|
+
readonly onShow?: (() => any) | undefined | undefined;
|
|
38
|
+
readonly onSwitch?: ((val: number) => any) | undefined | undefined;
|
|
39
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
55
40
|
$attrs: {
|
|
56
41
|
[x: string]: unknown;
|
|
57
42
|
};
|
|
@@ -64,146 +49,33 @@ declare function __VLS_template(): {
|
|
|
64
49
|
$root: import('vue').ComponentPublicInstance | null;
|
|
65
50
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
66
51
|
$host: Element | null;
|
|
67
|
-
$emit: ((event: "switch", val: number) => void) & ((event: "error", evt: Event) => void) & ((event: "close") => void) & ((event: "
|
|
52
|
+
$emit: ((event: "switch", val: number) => void) & ((event: "error", evt: Event) => void) & ((event: "close") => void) & ((event: "show") => void) & ((event: "load", evt: Event) => void);
|
|
68
53
|
$el: any;
|
|
69
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
70
|
-
readonly hideOnClickModal: BooleanConstructor;
|
|
71
|
-
readonly src: {
|
|
72
|
-
readonly type: PropType<string>;
|
|
73
|
-
readonly required: false;
|
|
74
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
75
|
-
__epPropKey: true;
|
|
76
|
-
} & {
|
|
77
|
-
readonly default: "";
|
|
78
|
-
};
|
|
79
|
-
readonly fit: {
|
|
80
|
-
readonly type: PropType<"" | "fill" | "contain" | "none" | "cover" | "scale-down">;
|
|
81
|
-
readonly required: false;
|
|
82
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
83
|
-
__epPropKey: true;
|
|
84
|
-
} & {
|
|
85
|
-
readonly default: "";
|
|
86
|
-
};
|
|
87
|
-
readonly loading: {
|
|
88
|
-
readonly type: PropType<"lazy" | "eager">;
|
|
89
|
-
readonly required: false;
|
|
90
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
91
|
-
__epPropKey: true;
|
|
92
|
-
};
|
|
93
|
-
readonly lazy: BooleanConstructor;
|
|
94
|
-
readonly scrollContainer: {
|
|
95
|
-
readonly type: PropType<string | HTMLElement | undefined>;
|
|
96
|
-
readonly required: false;
|
|
97
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
98
|
-
__epPropKey: true;
|
|
99
|
-
};
|
|
100
|
-
readonly previewSrcList: {
|
|
101
|
-
readonly type: PropType<string[]>;
|
|
102
|
-
readonly required: false;
|
|
103
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
104
|
-
__epPropKey: true;
|
|
105
|
-
} & {
|
|
106
|
-
readonly default: () => [];
|
|
107
|
-
};
|
|
108
|
-
readonly previewTeleported: BooleanConstructor;
|
|
109
|
-
readonly zIndex: {
|
|
110
|
-
readonly type: PropType<number>;
|
|
111
|
-
readonly required: false;
|
|
112
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
113
|
-
__epPropKey: true;
|
|
114
|
-
};
|
|
115
|
-
readonly initialIndex: {
|
|
116
|
-
readonly type: PropType<number>;
|
|
117
|
-
readonly required: false;
|
|
118
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
119
|
-
__epPropKey: true;
|
|
120
|
-
} & {
|
|
121
|
-
readonly default: 0;
|
|
122
|
-
};
|
|
123
|
-
readonly infinite: {
|
|
124
|
-
readonly type: PropType<boolean>;
|
|
125
|
-
readonly required: false;
|
|
126
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
127
|
-
__epPropKey: true;
|
|
128
|
-
} & {
|
|
129
|
-
readonly default: true;
|
|
130
|
-
};
|
|
131
|
-
readonly closeOnPressEscape: {
|
|
132
|
-
readonly type: PropType<boolean>;
|
|
133
|
-
readonly required: false;
|
|
134
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
135
|
-
__epPropKey: true;
|
|
136
|
-
} & {
|
|
137
|
-
readonly default: true;
|
|
138
|
-
};
|
|
139
|
-
readonly zoomRate: {
|
|
140
|
-
readonly type: PropType<number>;
|
|
141
|
-
readonly required: false;
|
|
142
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
143
|
-
__epPropKey: true;
|
|
144
|
-
} & {
|
|
145
|
-
readonly default: 1.2;
|
|
146
|
-
};
|
|
147
|
-
readonly scale: {
|
|
148
|
-
readonly type: PropType<number>;
|
|
149
|
-
readonly required: false;
|
|
150
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
151
|
-
__epPropKey: true;
|
|
152
|
-
} & {
|
|
153
|
-
readonly default: 1;
|
|
154
|
-
};
|
|
155
|
-
readonly minScale: {
|
|
156
|
-
readonly type: PropType<number>;
|
|
157
|
-
readonly required: false;
|
|
158
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
159
|
-
__epPropKey: true;
|
|
160
|
-
} & {
|
|
161
|
-
readonly default: 0.2;
|
|
162
|
-
};
|
|
163
|
-
readonly maxScale: {
|
|
164
|
-
readonly type: PropType<number>;
|
|
165
|
-
readonly required: false;
|
|
166
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
167
|
-
__epPropKey: true;
|
|
168
|
-
} & {
|
|
169
|
-
readonly default: 7;
|
|
170
|
-
};
|
|
171
|
-
readonly showProgress: BooleanConstructor;
|
|
172
|
-
readonly crossorigin: {
|
|
173
|
-
readonly type: PropType<"" | "anonymous" | "use-credentials">;
|
|
174
|
-
readonly required: false;
|
|
175
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
176
|
-
__epPropKey: true;
|
|
177
|
-
};
|
|
178
|
-
}>> & {
|
|
179
|
-
onShow?: (() => any) | undefined;
|
|
180
|
-
onLoad?: ((evt: Event) => any) | undefined;
|
|
181
|
-
onError?: ((evt: Event) => any) | undefined;
|
|
54
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ImageProps> & Readonly<{
|
|
182
55
|
onClose?: (() => any) | undefined;
|
|
56
|
+
onError?: ((evt: Event) => any) | undefined;
|
|
57
|
+
onLoad?: ((evt: Event) => any) | undefined;
|
|
58
|
+
onShow?: (() => any) | undefined;
|
|
183
59
|
onSwitch?: ((val: number) => any) | undefined;
|
|
184
|
-
}
|
|
60
|
+
}>, {
|
|
185
61
|
showPreview: () => void;
|
|
186
|
-
},
|
|
187
|
-
switch: (val: number) => void;
|
|
188
|
-
show: () => void;
|
|
62
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
189
63
|
close: () => void;
|
|
190
64
|
error: (evt: Event) => void;
|
|
191
65
|
load: (evt: Event) => void;
|
|
66
|
+
show: () => void;
|
|
67
|
+
switch: (val: number) => void;
|
|
192
68
|
}, string, {
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
readonly hideOnClickModal: boolean;
|
|
204
|
-
readonly showProgress: boolean;
|
|
205
|
-
readonly previewSrcList: string[];
|
|
206
|
-
readonly previewTeleported: boolean;
|
|
69
|
+
scale: number;
|
|
70
|
+
infinite: boolean;
|
|
71
|
+
closeOnPressEscape: boolean;
|
|
72
|
+
initialIndex: number;
|
|
73
|
+
src: string;
|
|
74
|
+
fit: import('element-plus').ImageFitType;
|
|
75
|
+
previewSrcList: string[];
|
|
76
|
+
zoomRate: number;
|
|
77
|
+
minScale: number;
|
|
78
|
+
maxScale: number;
|
|
207
79
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
208
80
|
beforeCreate?: (() => void) | (() => void)[];
|
|
209
81
|
created?: (() => void) | (() => void)[];
|
|
@@ -225,158 +97,50 @@ declare function __VLS_template(): {
|
|
|
225
97
|
$nextTick: typeof import('vue').nextTick;
|
|
226
98
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
227
99
|
} & Readonly<{
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
readonly showProgress: boolean;
|
|
240
|
-
readonly previewSrcList: string[];
|
|
241
|
-
readonly previewTeleported: boolean;
|
|
242
|
-
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
243
|
-
readonly hideOnClickModal: BooleanConstructor;
|
|
244
|
-
readonly src: {
|
|
245
|
-
readonly type: PropType<string>;
|
|
246
|
-
readonly required: false;
|
|
247
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
248
|
-
__epPropKey: true;
|
|
249
|
-
} & {
|
|
250
|
-
readonly default: "";
|
|
251
|
-
};
|
|
252
|
-
readonly fit: {
|
|
253
|
-
readonly type: PropType<"" | "fill" | "contain" | "none" | "cover" | "scale-down">;
|
|
254
|
-
readonly required: false;
|
|
255
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
256
|
-
__epPropKey: true;
|
|
257
|
-
} & {
|
|
258
|
-
readonly default: "";
|
|
259
|
-
};
|
|
260
|
-
readonly loading: {
|
|
261
|
-
readonly type: PropType<"lazy" | "eager">;
|
|
262
|
-
readonly required: false;
|
|
263
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
264
|
-
__epPropKey: true;
|
|
265
|
-
};
|
|
266
|
-
readonly lazy: BooleanConstructor;
|
|
267
|
-
readonly scrollContainer: {
|
|
268
|
-
readonly type: PropType<string | HTMLElement | undefined>;
|
|
269
|
-
readonly required: false;
|
|
270
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
271
|
-
__epPropKey: true;
|
|
272
|
-
};
|
|
273
|
-
readonly previewSrcList: {
|
|
274
|
-
readonly type: PropType<string[]>;
|
|
275
|
-
readonly required: false;
|
|
276
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
277
|
-
__epPropKey: true;
|
|
278
|
-
} & {
|
|
279
|
-
readonly default: () => [];
|
|
280
|
-
};
|
|
281
|
-
readonly previewTeleported: BooleanConstructor;
|
|
282
|
-
readonly zIndex: {
|
|
283
|
-
readonly type: PropType<number>;
|
|
284
|
-
readonly required: false;
|
|
285
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
286
|
-
__epPropKey: true;
|
|
287
|
-
};
|
|
288
|
-
readonly initialIndex: {
|
|
289
|
-
readonly type: PropType<number>;
|
|
290
|
-
readonly required: false;
|
|
291
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
292
|
-
__epPropKey: true;
|
|
293
|
-
} & {
|
|
294
|
-
readonly default: 0;
|
|
295
|
-
};
|
|
296
|
-
readonly infinite: {
|
|
297
|
-
readonly type: PropType<boolean>;
|
|
298
|
-
readonly required: false;
|
|
299
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
300
|
-
__epPropKey: true;
|
|
301
|
-
} & {
|
|
302
|
-
readonly default: true;
|
|
303
|
-
};
|
|
304
|
-
readonly closeOnPressEscape: {
|
|
305
|
-
readonly type: PropType<boolean>;
|
|
306
|
-
readonly required: false;
|
|
307
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
308
|
-
__epPropKey: true;
|
|
309
|
-
} & {
|
|
310
|
-
readonly default: true;
|
|
311
|
-
};
|
|
312
|
-
readonly zoomRate: {
|
|
313
|
-
readonly type: PropType<number>;
|
|
314
|
-
readonly required: false;
|
|
315
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
316
|
-
__epPropKey: true;
|
|
317
|
-
} & {
|
|
318
|
-
readonly default: 1.2;
|
|
319
|
-
};
|
|
320
|
-
readonly scale: {
|
|
321
|
-
readonly type: PropType<number>;
|
|
322
|
-
readonly required: false;
|
|
323
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
324
|
-
__epPropKey: true;
|
|
325
|
-
} & {
|
|
326
|
-
readonly default: 1;
|
|
327
|
-
};
|
|
328
|
-
readonly minScale: {
|
|
329
|
-
readonly type: PropType<number>;
|
|
330
|
-
readonly required: false;
|
|
331
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
332
|
-
__epPropKey: true;
|
|
333
|
-
} & {
|
|
334
|
-
readonly default: 0.2;
|
|
335
|
-
};
|
|
336
|
-
readonly maxScale: {
|
|
337
|
-
readonly type: PropType<number>;
|
|
338
|
-
readonly required: false;
|
|
339
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
340
|
-
__epPropKey: true;
|
|
341
|
-
} & {
|
|
342
|
-
readonly default: 7;
|
|
343
|
-
};
|
|
344
|
-
readonly showProgress: BooleanConstructor;
|
|
345
|
-
readonly crossorigin: {
|
|
346
|
-
readonly type: PropType<"" | "anonymous" | "use-credentials">;
|
|
347
|
-
readonly required: false;
|
|
348
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
349
|
-
__epPropKey: true;
|
|
350
|
-
};
|
|
351
|
-
}>> & {
|
|
352
|
-
onShow?: (() => any) | undefined;
|
|
353
|
-
onLoad?: ((evt: Event) => any) | undefined;
|
|
354
|
-
onError?: ((evt: Event) => any) | undefined;
|
|
100
|
+
scale: number;
|
|
101
|
+
infinite: boolean;
|
|
102
|
+
closeOnPressEscape: boolean;
|
|
103
|
+
initialIndex: number;
|
|
104
|
+
src: string;
|
|
105
|
+
fit: import('element-plus').ImageFitType;
|
|
106
|
+
previewSrcList: string[];
|
|
107
|
+
zoomRate: number;
|
|
108
|
+
minScale: number;
|
|
109
|
+
maxScale: number;
|
|
110
|
+
}> & Omit<Readonly<import('element-plus').ImageProps> & Readonly<{
|
|
355
111
|
onClose?: (() => any) | undefined;
|
|
112
|
+
onError?: ((evt: Event) => any) | undefined;
|
|
113
|
+
onLoad?: ((evt: Event) => any) | undefined;
|
|
114
|
+
onShow?: (() => any) | undefined;
|
|
356
115
|
onSwitch?: ((val: number) => any) | undefined;
|
|
357
|
-
}
|
|
116
|
+
}>, "src" | "fit" | "previewSrcList" | "initialIndex" | "infinite" | "closeOnPressEscape" | "zoomRate" | "scale" | "minScale" | "maxScale" | "showPreview"> & import('vue').ShallowUnwrapRef<{
|
|
358
117
|
showPreview: () => void;
|
|
359
118
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
360
119
|
$slots: {
|
|
361
|
-
error
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
120
|
+
error?: (props: {}) => any;
|
|
121
|
+
} & {
|
|
122
|
+
placeholder?: (props: {}) => any;
|
|
123
|
+
} & {
|
|
124
|
+
viewer?: (props: {}) => any;
|
|
125
|
+
} & {
|
|
126
|
+
progress?: (props: {
|
|
365
127
|
activeIndex: number;
|
|
366
128
|
total: number;
|
|
367
|
-
})
|
|
368
|
-
|
|
129
|
+
}) => any;
|
|
130
|
+
} & {
|
|
131
|
+
toolbar?: (props: {
|
|
369
132
|
actions: (action: import('element-plus').ImageViewerAction, options?: {}) => void;
|
|
370
133
|
prev: () => void;
|
|
371
134
|
next: () => void;
|
|
372
135
|
reset: () => void;
|
|
373
136
|
activeIndex: number;
|
|
374
137
|
setActiveItem: (index: number) => void;
|
|
375
|
-
})
|
|
376
|
-
|
|
138
|
+
}) => any;
|
|
139
|
+
} & {
|
|
140
|
+
'viewer-error'?: (props: {
|
|
377
141
|
activeIndex: number;
|
|
378
142
|
src: string;
|
|
379
|
-
})
|
|
143
|
+
}) => any;
|
|
380
144
|
};
|
|
381
145
|
}) | null;
|
|
382
146
|
};
|
|
@@ -422,46 +186,31 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
422
186
|
imageRef: ({
|
|
423
187
|
$: import('vue').ComponentInternalInstance;
|
|
424
188
|
$data: {};
|
|
425
|
-
$props:
|
|
426
|
-
readonly
|
|
427
|
-
readonly
|
|
428
|
-
readonly
|
|
429
|
-
readonly
|
|
430
|
-
readonly
|
|
431
|
-
readonly
|
|
432
|
-
readonly
|
|
433
|
-
readonly
|
|
434
|
-
readonly minScale: number;
|
|
435
|
-
readonly maxScale: number;
|
|
436
|
-
readonly hideOnClickModal: boolean;
|
|
437
|
-
readonly showProgress: boolean;
|
|
438
|
-
readonly previewSrcList: string[];
|
|
439
|
-
readonly previewTeleported: boolean;
|
|
440
|
-
}> & Omit<{
|
|
441
|
-
readonly hideOnClickModal: boolean;
|
|
442
|
-
readonly src: string;
|
|
443
|
-
readonly fit: "" | "fill" | "contain" | "none" | "cover" | "scale-down";
|
|
444
|
-
readonly lazy: boolean;
|
|
445
|
-
readonly previewSrcList: string[];
|
|
446
|
-
readonly previewTeleported: boolean;
|
|
447
|
-
readonly initialIndex: number;
|
|
448
|
-
readonly infinite: boolean;
|
|
449
|
-
readonly closeOnPressEscape: boolean;
|
|
450
|
-
readonly zoomRate: number;
|
|
451
|
-
readonly scale: number;
|
|
452
|
-
readonly minScale: number;
|
|
453
|
-
readonly maxScale: number;
|
|
454
|
-
readonly showProgress: boolean;
|
|
455
|
-
readonly loading?: ("lazy" | "eager") | undefined;
|
|
456
|
-
readonly scrollContainer?: string | HTMLElement | undefined;
|
|
189
|
+
$props: {
|
|
190
|
+
readonly hideOnClickModal?: boolean | undefined;
|
|
191
|
+
readonly src?: string | undefined;
|
|
192
|
+
readonly fit?: import('element-plus').ImageFitType | undefined;
|
|
193
|
+
readonly loading?: "eager" | "lazy" | undefined;
|
|
194
|
+
readonly lazy?: boolean | undefined;
|
|
195
|
+
readonly scrollContainer?: (string | HTMLElement) | undefined;
|
|
196
|
+
readonly previewSrcList?: string[] | undefined;
|
|
197
|
+
readonly previewTeleported?: boolean | undefined;
|
|
457
198
|
readonly zIndex?: number | undefined;
|
|
458
|
-
readonly
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
199
|
+
readonly initialIndex?: number | undefined;
|
|
200
|
+
readonly infinite?: boolean | undefined;
|
|
201
|
+
readonly closeOnPressEscape?: boolean | undefined;
|
|
202
|
+
readonly zoomRate?: number | undefined;
|
|
203
|
+
readonly scale?: number | undefined;
|
|
204
|
+
readonly minScale?: number | undefined;
|
|
205
|
+
readonly maxScale?: number | undefined;
|
|
206
|
+
readonly showProgress?: boolean | undefined;
|
|
207
|
+
readonly crossorigin?: import('element-plus').ImageCrossorigin | undefined;
|
|
208
|
+
readonly onClose?: (() => any) | undefined | undefined;
|
|
209
|
+
readonly onError?: ((evt: Event) => any) | undefined | undefined;
|
|
210
|
+
readonly onLoad?: ((evt: Event) => any) | undefined | undefined;
|
|
211
|
+
readonly onShow?: (() => any) | undefined | undefined;
|
|
212
|
+
readonly onSwitch?: ((val: number) => any) | undefined | undefined;
|
|
213
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
465
214
|
$attrs: {
|
|
466
215
|
[x: string]: unknown;
|
|
467
216
|
};
|
|
@@ -474,146 +223,33 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
474
223
|
$root: import('vue').ComponentPublicInstance | null;
|
|
475
224
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
476
225
|
$host: Element | null;
|
|
477
|
-
$emit: ((event: "switch", val: number) => void) & ((event: "error", evt: Event) => void) & ((event: "close") => void) & ((event: "
|
|
226
|
+
$emit: ((event: "switch", val: number) => void) & ((event: "error", evt: Event) => void) & ((event: "close") => void) & ((event: "show") => void) & ((event: "load", evt: Event) => void);
|
|
478
227
|
$el: any;
|
|
479
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
480
|
-
readonly hideOnClickModal: BooleanConstructor;
|
|
481
|
-
readonly src: {
|
|
482
|
-
readonly type: PropType<string>;
|
|
483
|
-
readonly required: false;
|
|
484
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
485
|
-
__epPropKey: true;
|
|
486
|
-
} & {
|
|
487
|
-
readonly default: "";
|
|
488
|
-
};
|
|
489
|
-
readonly fit: {
|
|
490
|
-
readonly type: PropType<"" | "fill" | "contain" | "none" | "cover" | "scale-down">;
|
|
491
|
-
readonly required: false;
|
|
492
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
493
|
-
__epPropKey: true;
|
|
494
|
-
} & {
|
|
495
|
-
readonly default: "";
|
|
496
|
-
};
|
|
497
|
-
readonly loading: {
|
|
498
|
-
readonly type: PropType<"lazy" | "eager">;
|
|
499
|
-
readonly required: false;
|
|
500
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
501
|
-
__epPropKey: true;
|
|
502
|
-
};
|
|
503
|
-
readonly lazy: BooleanConstructor;
|
|
504
|
-
readonly scrollContainer: {
|
|
505
|
-
readonly type: PropType<string | HTMLElement | undefined>;
|
|
506
|
-
readonly required: false;
|
|
507
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
508
|
-
__epPropKey: true;
|
|
509
|
-
};
|
|
510
|
-
readonly previewSrcList: {
|
|
511
|
-
readonly type: PropType<string[]>;
|
|
512
|
-
readonly required: false;
|
|
513
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
514
|
-
__epPropKey: true;
|
|
515
|
-
} & {
|
|
516
|
-
readonly default: () => [];
|
|
517
|
-
};
|
|
518
|
-
readonly previewTeleported: BooleanConstructor;
|
|
519
|
-
readonly zIndex: {
|
|
520
|
-
readonly type: PropType<number>;
|
|
521
|
-
readonly required: false;
|
|
522
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
523
|
-
__epPropKey: true;
|
|
524
|
-
};
|
|
525
|
-
readonly initialIndex: {
|
|
526
|
-
readonly type: PropType<number>;
|
|
527
|
-
readonly required: false;
|
|
528
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
529
|
-
__epPropKey: true;
|
|
530
|
-
} & {
|
|
531
|
-
readonly default: 0;
|
|
532
|
-
};
|
|
533
|
-
readonly infinite: {
|
|
534
|
-
readonly type: PropType<boolean>;
|
|
535
|
-
readonly required: false;
|
|
536
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
537
|
-
__epPropKey: true;
|
|
538
|
-
} & {
|
|
539
|
-
readonly default: true;
|
|
540
|
-
};
|
|
541
|
-
readonly closeOnPressEscape: {
|
|
542
|
-
readonly type: PropType<boolean>;
|
|
543
|
-
readonly required: false;
|
|
544
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
545
|
-
__epPropKey: true;
|
|
546
|
-
} & {
|
|
547
|
-
readonly default: true;
|
|
548
|
-
};
|
|
549
|
-
readonly zoomRate: {
|
|
550
|
-
readonly type: PropType<number>;
|
|
551
|
-
readonly required: false;
|
|
552
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
553
|
-
__epPropKey: true;
|
|
554
|
-
} & {
|
|
555
|
-
readonly default: 1.2;
|
|
556
|
-
};
|
|
557
|
-
readonly scale: {
|
|
558
|
-
readonly type: PropType<number>;
|
|
559
|
-
readonly required: false;
|
|
560
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
561
|
-
__epPropKey: true;
|
|
562
|
-
} & {
|
|
563
|
-
readonly default: 1;
|
|
564
|
-
};
|
|
565
|
-
readonly minScale: {
|
|
566
|
-
readonly type: PropType<number>;
|
|
567
|
-
readonly required: false;
|
|
568
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
569
|
-
__epPropKey: true;
|
|
570
|
-
} & {
|
|
571
|
-
readonly default: 0.2;
|
|
572
|
-
};
|
|
573
|
-
readonly maxScale: {
|
|
574
|
-
readonly type: PropType<number>;
|
|
575
|
-
readonly required: false;
|
|
576
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
577
|
-
__epPropKey: true;
|
|
578
|
-
} & {
|
|
579
|
-
readonly default: 7;
|
|
580
|
-
};
|
|
581
|
-
readonly showProgress: BooleanConstructor;
|
|
582
|
-
readonly crossorigin: {
|
|
583
|
-
readonly type: PropType<"" | "anonymous" | "use-credentials">;
|
|
584
|
-
readonly required: false;
|
|
585
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
586
|
-
__epPropKey: true;
|
|
587
|
-
};
|
|
588
|
-
}>> & {
|
|
589
|
-
onShow?: (() => any) | undefined;
|
|
590
|
-
onLoad?: ((evt: Event) => any) | undefined;
|
|
591
|
-
onError?: ((evt: Event) => any) | undefined;
|
|
228
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ImageProps> & Readonly<{
|
|
592
229
|
onClose?: (() => any) | undefined;
|
|
230
|
+
onError?: ((evt: Event) => any) | undefined;
|
|
231
|
+
onLoad?: ((evt: Event) => any) | undefined;
|
|
232
|
+
onShow?: (() => any) | undefined;
|
|
593
233
|
onSwitch?: ((val: number) => any) | undefined;
|
|
594
|
-
}
|
|
234
|
+
}>, {
|
|
595
235
|
showPreview: () => void;
|
|
596
|
-
},
|
|
597
|
-
switch: (val: number) => void;
|
|
598
|
-
show: () => void;
|
|
236
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
599
237
|
close: () => void;
|
|
600
238
|
error: (evt: Event) => void;
|
|
601
239
|
load: (evt: Event) => void;
|
|
240
|
+
show: () => void;
|
|
241
|
+
switch: (val: number) => void;
|
|
602
242
|
}, string, {
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
readonly hideOnClickModal: boolean;
|
|
614
|
-
readonly showProgress: boolean;
|
|
615
|
-
readonly previewSrcList: string[];
|
|
616
|
-
readonly previewTeleported: boolean;
|
|
243
|
+
scale: number;
|
|
244
|
+
infinite: boolean;
|
|
245
|
+
closeOnPressEscape: boolean;
|
|
246
|
+
initialIndex: number;
|
|
247
|
+
src: string;
|
|
248
|
+
fit: import('element-plus').ImageFitType;
|
|
249
|
+
previewSrcList: string[];
|
|
250
|
+
zoomRate: number;
|
|
251
|
+
minScale: number;
|
|
252
|
+
maxScale: number;
|
|
617
253
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
618
254
|
beforeCreate?: (() => void) | (() => void)[];
|
|
619
255
|
created?: (() => void) | (() => void)[];
|
|
@@ -635,158 +271,50 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
635
271
|
$nextTick: typeof import('vue').nextTick;
|
|
636
272
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
637
273
|
} & Readonly<{
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
readonly showProgress: boolean;
|
|
650
|
-
readonly previewSrcList: string[];
|
|
651
|
-
readonly previewTeleported: boolean;
|
|
652
|
-
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
653
|
-
readonly hideOnClickModal: BooleanConstructor;
|
|
654
|
-
readonly src: {
|
|
655
|
-
readonly type: PropType<string>;
|
|
656
|
-
readonly required: false;
|
|
657
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
658
|
-
__epPropKey: true;
|
|
659
|
-
} & {
|
|
660
|
-
readonly default: "";
|
|
661
|
-
};
|
|
662
|
-
readonly fit: {
|
|
663
|
-
readonly type: PropType<"" | "fill" | "contain" | "none" | "cover" | "scale-down">;
|
|
664
|
-
readonly required: false;
|
|
665
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
666
|
-
__epPropKey: true;
|
|
667
|
-
} & {
|
|
668
|
-
readonly default: "";
|
|
669
|
-
};
|
|
670
|
-
readonly loading: {
|
|
671
|
-
readonly type: PropType<"lazy" | "eager">;
|
|
672
|
-
readonly required: false;
|
|
673
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
674
|
-
__epPropKey: true;
|
|
675
|
-
};
|
|
676
|
-
readonly lazy: BooleanConstructor;
|
|
677
|
-
readonly scrollContainer: {
|
|
678
|
-
readonly type: PropType<string | HTMLElement | undefined>;
|
|
679
|
-
readonly required: false;
|
|
680
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
681
|
-
__epPropKey: true;
|
|
682
|
-
};
|
|
683
|
-
readonly previewSrcList: {
|
|
684
|
-
readonly type: PropType<string[]>;
|
|
685
|
-
readonly required: false;
|
|
686
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
687
|
-
__epPropKey: true;
|
|
688
|
-
} & {
|
|
689
|
-
readonly default: () => [];
|
|
690
|
-
};
|
|
691
|
-
readonly previewTeleported: BooleanConstructor;
|
|
692
|
-
readonly zIndex: {
|
|
693
|
-
readonly type: PropType<number>;
|
|
694
|
-
readonly required: false;
|
|
695
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
696
|
-
__epPropKey: true;
|
|
697
|
-
};
|
|
698
|
-
readonly initialIndex: {
|
|
699
|
-
readonly type: PropType<number>;
|
|
700
|
-
readonly required: false;
|
|
701
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
702
|
-
__epPropKey: true;
|
|
703
|
-
} & {
|
|
704
|
-
readonly default: 0;
|
|
705
|
-
};
|
|
706
|
-
readonly infinite: {
|
|
707
|
-
readonly type: PropType<boolean>;
|
|
708
|
-
readonly required: false;
|
|
709
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
710
|
-
__epPropKey: true;
|
|
711
|
-
} & {
|
|
712
|
-
readonly default: true;
|
|
713
|
-
};
|
|
714
|
-
readonly closeOnPressEscape: {
|
|
715
|
-
readonly type: PropType<boolean>;
|
|
716
|
-
readonly required: false;
|
|
717
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
718
|
-
__epPropKey: true;
|
|
719
|
-
} & {
|
|
720
|
-
readonly default: true;
|
|
721
|
-
};
|
|
722
|
-
readonly zoomRate: {
|
|
723
|
-
readonly type: PropType<number>;
|
|
724
|
-
readonly required: false;
|
|
725
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
726
|
-
__epPropKey: true;
|
|
727
|
-
} & {
|
|
728
|
-
readonly default: 1.2;
|
|
729
|
-
};
|
|
730
|
-
readonly scale: {
|
|
731
|
-
readonly type: PropType<number>;
|
|
732
|
-
readonly required: false;
|
|
733
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
734
|
-
__epPropKey: true;
|
|
735
|
-
} & {
|
|
736
|
-
readonly default: 1;
|
|
737
|
-
};
|
|
738
|
-
readonly minScale: {
|
|
739
|
-
readonly type: PropType<number>;
|
|
740
|
-
readonly required: false;
|
|
741
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
742
|
-
__epPropKey: true;
|
|
743
|
-
} & {
|
|
744
|
-
readonly default: 0.2;
|
|
745
|
-
};
|
|
746
|
-
readonly maxScale: {
|
|
747
|
-
readonly type: PropType<number>;
|
|
748
|
-
readonly required: false;
|
|
749
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
750
|
-
__epPropKey: true;
|
|
751
|
-
} & {
|
|
752
|
-
readonly default: 7;
|
|
753
|
-
};
|
|
754
|
-
readonly showProgress: BooleanConstructor;
|
|
755
|
-
readonly crossorigin: {
|
|
756
|
-
readonly type: PropType<"" | "anonymous" | "use-credentials">;
|
|
757
|
-
readonly required: false;
|
|
758
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
759
|
-
__epPropKey: true;
|
|
760
|
-
};
|
|
761
|
-
}>> & {
|
|
762
|
-
onShow?: (() => any) | undefined;
|
|
763
|
-
onLoad?: ((evt: Event) => any) | undefined;
|
|
764
|
-
onError?: ((evt: Event) => any) | undefined;
|
|
274
|
+
scale: number;
|
|
275
|
+
infinite: boolean;
|
|
276
|
+
closeOnPressEscape: boolean;
|
|
277
|
+
initialIndex: number;
|
|
278
|
+
src: string;
|
|
279
|
+
fit: import('element-plus').ImageFitType;
|
|
280
|
+
previewSrcList: string[];
|
|
281
|
+
zoomRate: number;
|
|
282
|
+
minScale: number;
|
|
283
|
+
maxScale: number;
|
|
284
|
+
}> & Omit<Readonly<import('element-plus').ImageProps> & Readonly<{
|
|
765
285
|
onClose?: (() => any) | undefined;
|
|
286
|
+
onError?: ((evt: Event) => any) | undefined;
|
|
287
|
+
onLoad?: ((evt: Event) => any) | undefined;
|
|
288
|
+
onShow?: (() => any) | undefined;
|
|
766
289
|
onSwitch?: ((val: number) => any) | undefined;
|
|
767
|
-
}
|
|
290
|
+
}>, "src" | "fit" | "previewSrcList" | "initialIndex" | "infinite" | "closeOnPressEscape" | "zoomRate" | "scale" | "minScale" | "maxScale" | "showPreview"> & import('vue').ShallowUnwrapRef<{
|
|
768
291
|
showPreview: () => void;
|
|
769
292
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
770
293
|
$slots: {
|
|
771
|
-
error
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
294
|
+
error?: (props: {}) => any;
|
|
295
|
+
} & {
|
|
296
|
+
placeholder?: (props: {}) => any;
|
|
297
|
+
} & {
|
|
298
|
+
viewer?: (props: {}) => any;
|
|
299
|
+
} & {
|
|
300
|
+
progress?: (props: {
|
|
775
301
|
activeIndex: number;
|
|
776
302
|
total: number;
|
|
777
|
-
})
|
|
778
|
-
|
|
303
|
+
}) => any;
|
|
304
|
+
} & {
|
|
305
|
+
toolbar?: (props: {
|
|
779
306
|
actions: (action: import('element-plus').ImageViewerAction, options?: {}) => void;
|
|
780
307
|
prev: () => void;
|
|
781
308
|
next: () => void;
|
|
782
309
|
reset: () => void;
|
|
783
310
|
activeIndex: number;
|
|
784
311
|
setActiveItem: (index: number) => void;
|
|
785
|
-
})
|
|
786
|
-
|
|
312
|
+
}) => any;
|
|
313
|
+
} & {
|
|
314
|
+
'viewer-error'?: (props: {
|
|
787
315
|
activeIndex: number;
|
|
788
316
|
src: string;
|
|
789
|
-
})
|
|
317
|
+
}) => any;
|
|
790
318
|
};
|
|
791
319
|
}) | null;
|
|
792
320
|
}, any>;
|