UNPKG

material-react-table

Version:

A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.

10 lines (9 loc) 297 B
import { FC, RefObject } from 'react'; import type { MRT_Column, MRT_TableInstance } from '..'; interface Props { column: MRT_Column; table: MRT_TableInstance; tableHeadCellRef: RefObject<HTMLTableCellElement>; } export declare const MRT_TableHeadCellGrabHandle: FC<Props>; export {};