@@ -24,6 +24,7 @@ declare global {
2424 const controlledComputed : typeof import ( '@vueuse/core' ) [ 'controlledComputed' ]
2525 const controlledRef : typeof import ( '@vueuse/core' ) [ 'controlledRef' ]
2626 const createApp : typeof import ( 'vue' ) [ 'createApp' ]
27+ const createDropZoneConfig : typeof import ( './src/composables/useDragDropContext' ) [ 'createDropZoneConfig' ]
2728 const createEventHook : typeof import ( '@vueuse/core' ) [ 'createEventHook' ]
2829 const createGlobalState : typeof import ( '@vueuse/core' ) [ 'createGlobalState' ]
2930 const createInjectionState : typeof import ( '@vueuse/core' ) [ 'createInjectionState' ]
@@ -189,6 +190,7 @@ declare global {
189190 const useDevicesList : typeof import ( '@vueuse/core' ) [ 'useDevicesList' ]
190191 const useDisplayMedia : typeof import ( '@vueuse/core' ) [ 'useDisplayMedia' ]
191192 const useDocumentVisibility : typeof import ( '@vueuse/core' ) [ 'useDocumentVisibility' ]
193+ const useDragDropContext : typeof import ( './src/composables/useDragDropContext' ) [ 'useDragDropContext' ]
192194 const useDraggable : typeof import ( '@vueuse/core' ) [ 'useDraggable' ]
193195 const useDropZone : typeof import ( '@vueuse/core' ) [ 'useDropZone' ]
194196 const useElementBounding : typeof import ( '@vueuse/core' ) [ 'useElementBounding' ]
@@ -382,6 +384,7 @@ declare module 'vue' {
382384 readonly controlledComputed : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'controlledComputed' ] >
383385 readonly controlledRef : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'controlledRef' ] >
384386 readonly createApp : UnwrapRef < typeof import ( 'vue' ) [ 'createApp' ] >
387+ readonly createDropZoneConfig : UnwrapRef < typeof import ( './src/composables/useDragDropContext' ) [ 'createDropZoneConfig' ] >
385388 readonly createEventHook : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'createEventHook' ] >
386389 readonly createGlobalState : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'createGlobalState' ] >
387390 readonly createInjectionState : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'createInjectionState' ] >
@@ -538,6 +541,7 @@ declare module 'vue' {
538541 readonly useDevicesList : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useDevicesList' ] >
539542 readonly useDisplayMedia : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useDisplayMedia' ] >
540543 readonly useDocumentVisibility : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useDocumentVisibility' ] >
544+ readonly useDragDropContext : UnwrapRef < typeof import ( './src/composables/useDragDropContext' ) [ 'useDragDropContext' ] >
541545 readonly useDraggable : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useDraggable' ] >
542546 readonly useDropZone : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useDropZone' ] >
543547 readonly useElementBounding : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useElementBounding' ] >
0 commit comments