UNPKG

@vue-dnd-kit/core

Version:

Core functionality for Vue DnD Kit - a lightweight Vue 3 library for building performant and accessible drag and drop interfaces

10 lines (9 loc) 414 B
import { IAutoScrollOptionsInternal } from '../types/auto-scroll'; import { IDnDProviderInternal } from '../types/provider'; /** * Internal composable: viewport (window) auto-scroll. Not exposed to user. */ export declare function useViewportAutoScroll(provider: IDnDProviderInternal, options?: IAutoScrollOptionsInternal): { isScrolling: import('vue').ShallowRef<boolean, boolean>; stop: () => void; };