UNPKG

@vue-dnd-kit/utilities

Version:

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

10 lines (9 loc) 286 B
/** Auto-scroll configuration options */ export interface IAutoScrollOptions { /** Distance from edge to start auto-scrolling (px) */ threshold?: number; /** Scrolling speed (px/frame) */ speed?: number; /** Whether auto-scroll is disabled */ disabled?: boolean; }