UNPKG

es-grid-template

Version:

es-grid-template

13 lines (12 loc) 488 B
import type { Cell, Table } from "@tanstack/react-table"; import type { CommandClick } from "../../grid-component/type"; import React from "react"; interface TableBodyCellProps<T> { table: Table<T>; tableId: string; cell: Cell<T, unknown>; commandClick?: (args: CommandClick<T>) => void; [key: string]: any; } declare const TableBodyCellEmpty: <RecordType extends object>(props: TableBodyCellProps<RecordType>) => React.JSX.Element; export default TableBodyCellEmpty;