|
1 | 1 | import * as vue from 'vue'; |
2 | 2 |
|
3 | | -declare const VirtualList: vue.DefineComponent<vue.ExtractPropTypes<{ |
| 3 | +declare const VirtualList: vue.DefineComponent<{ |
4 | 4 | dataSource: {}; |
5 | 5 | modelValue: {}; |
6 | 6 | dataKey: { |
@@ -133,9 +133,9 @@ declare const VirtualList: vue.DefineComponent<vue.ExtractPropTypes<{ |
133 | 133 | type: StringConstructor; |
134 | 134 | default: string; |
135 | 135 | }; |
136 | | -}>, () => vue.VNode<vue.RendererNode, vue.RendererElement, { |
| 136 | +}, () => vue.VNode<vue.RendererNode, vue.RendererElement, { |
137 | 137 | [key: string]: any; |
138 | | -}>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("update:dataSource" | "update:modelValue" | "top" | "bottom" | "drag" | "drop" | "rangeChange")[], "update:dataSource" | "update:modelValue" | "top" | "bottom" | "drag" | "drop" | "rangeChange", vue.PublicProps, Readonly<vue.ExtractPropTypes<{ |
| 138 | +}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("update:dataSource" | "update:modelValue" | "top" | "bottom" | "drag" | "drop" | "rangeChange")[], "update:dataSource" | "update:modelValue" | "top" | "bottom" | "drag" | "drop" | "rangeChange", vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{ |
139 | 139 | dataSource: {}; |
140 | 140 | modelValue: {}; |
141 | 141 | dataKey: { |
@@ -268,15 +268,15 @@ declare const VirtualList: vue.DefineComponent<vue.ExtractPropTypes<{ |
268 | 268 | type: StringConstructor; |
269 | 269 | default: string; |
270 | 270 | }; |
271 | | -}>> & Readonly<{ |
| 271 | +}>> & { |
272 | 272 | "onUpdate:dataSource"?: ((...args: any[]) => any) | undefined; |
273 | 273 | "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; |
274 | 274 | onTop?: ((...args: any[]) => any) | undefined; |
275 | 275 | onBottom?: ((...args: any[]) => any) | undefined; |
276 | 276 | onDrag?: ((...args: any[]) => any) | undefined; |
277 | 277 | onDrop?: ((...args: any[]) => any) | undefined; |
278 | 278 | onRangeChange?: ((...args: any[]) => any) | undefined; |
279 | | -}>, { |
| 279 | +}, { |
280 | 280 | dataKey: string; |
281 | 281 | tableMode: boolean; |
282 | 282 | draggable: string; |
@@ -304,6 +304,6 @@ declare const VirtualList: vue.DefineComponent<vue.ExtractPropTypes<{ |
304 | 304 | ghostStyle: Record<string, any>; |
305 | 305 | chosenClass: string; |
306 | 306 | placeholderClass: string; |
307 | | -}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>; |
| 307 | +}>; |
308 | 308 |
|
309 | 309 | export { VirtualList as default }; |
0 commit comments