UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

8 lines (7 loc) 272 B
import type { TableProps } from './types'; export declare const useTableDrag: (store: TableProps["store"]) => { handleDragStart: (e: React.DragEvent) => void; handleDragOver: (e: any) => void; handleDrop: () => Promise<void>; handleDragEnd: () => void; };