UNPKG

@thisux/sveltednd

Version:

A lightweight, flexible drag and drop library for Svelte 5 applications.

6 lines (5 loc) 220 B
import type { DragDropOptions } from '../types/index.js'; export declare function droppable<T>(node: HTMLElement, options: DragDropOptions<T>): { update(newOptions: DragDropOptions<T>): void; destroy(): void; };