es-grid-template
Version:
es-grid-template
8 lines (7 loc) • 304 B
TypeScript
/// <reference types="react" />
import type { Column } from "@tanstack/react-table";
interface TableFooterCellProps<T> {
column: Column<T, any>;
}
declare const TableFooterCell: <RecordType extends object>({ column }: TableFooterCellProps<RecordType>) => JSX.Element;
export default TableFooterCell;