UNPKG

es-grid-template

Version:

es-grid-template

9 lines (8 loc) 351 B
/// <reference types="react" /> import type { HeaderGroup, Table } from "@tanstack/react-table"; interface TableFooterRowProps<T> { table: Table<T>; headerGroup: HeaderGroup<T>; } declare const TableFooterRow: <RecordType extends object>({ table, headerGroup, }: TableFooterRowProps<RecordType>) => JSX.Element; export default TableFooterRow;