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

7 lines (6 loc) 325 B
import { IDnDProviderInternal } from '../types/provider'; export declare const handleKeyboardEvents: { keyDown: (provider: IDnDProviderInternal) => (event: KeyboardEvent) => void; keyUp: (provider: IDnDProviderInternal) => (event: KeyboardEvent) => void; clear: (provider: IDnDProviderInternal) => () => void; };