UNPKG

kolenkainc-honohub-react

Version:

React admin panel for honohub

14 lines (13 loc) 472 B
import { BooleanCell } from "./Boolean"; import { DateCell } from "./Date"; import { DatetimeCell } from "./Datetime"; import { TextCell } from "./Text"; export { FibrCellWrapper } from "./CellWrapper"; export declare const COLUMN_HEADER_COMPONENTS: { date: typeof DateCell; boolean: typeof BooleanCell; datetime: typeof DatetimeCell; string: typeof TextCell; number: typeof TextCell; }; export type ColumnType = keyof typeof COLUMN_HEADER_COMPONENTS;