UNPKG

@cn-ui/core

Version:

The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.

14 lines (13 loc) 312 B
export declare function drag(element: HTMLElement, { handler, to: inTo, delta, steps, duration, }: { handler?: Element; to?: { x: number; y: number; } | Element; delta: { x?: number; y?: number; }; steps?: number; duration?: number; }): Promise<void>;