UNPKG

es-grid-template

Version:

es-grid-template

11 lines (10 loc) 412 B
import type { Cell, Table } from "@tanstack/react-table"; import type { CommandClick } from "../type"; import React from "react"; interface TableBodyCellProps<T> { cell: Cell<T, unknown>; commandClick?: (args: CommandClick) => void; table: Table<T>; } declare const TableBodyCell: <RecordType extends object>(props: TableBodyCellProps<RecordType>) => React.JSX.Element; export default TableBodyCell;