amotify
Version:
UI Component for React,NextJS,esbuild
19 lines (18 loc) • 504 B
TypeScript
import { TableTypes } from '.';
import TableParts from './Parts';
declare namespace Drag {
type Cell = TableParts.Cell;
type HeadRow = Cell[];
type BodyRow = Cell[] & {
rowID?: any;
};
type Input = TableTypes.UniInput & {
head: HeadRow | false;
rows: BodyRow[];
onOrderChanged: {
(orderList: any[]): void;
};
};
}
declare const Drag: (p: Drag.Input) => import("react/jsx-runtime").JSX.Element;
export { Drag, Drag as default };