UNPKG

amotify

Version:

UI Component for React,NextJS,esbuild

17 lines (16 loc) 495 B
import { TableTypes } from '.'; import TableParts from './Parts'; declare namespace Normal { type Cell = TableParts.Cell; type HeadRow = Cell[]; type BodyRow = Cell[] & { rowID?: string | number; }; type Input = TableTypes.UniInput & { head: HeadRow | false; rows: BodyRow[]; onRowClick?: TableTypes.OnRowClick; }; } declare const Normal: (p: Normal.Input) => import("react/jsx-runtime").JSX.Element; export { Normal, Normal as default };