UNPKG

mantine-react-table

Version:

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

17 lines (16 loc) 580 B
import React, { FC, RefObject } from 'react'; import type { VirtualItem } from '@tanstack/react-virtual'; import type { MRT_Cell, MRT_TableInstance } from '..'; interface Props { cell: MRT_Cell; enableHover?: boolean; measureElement?: (element: HTMLTableCellElement) => void; numRows: number; rowIndex: number; rowRef: RefObject<HTMLTableRowElement>; table: MRT_TableInstance; virtualCell?: VirtualItem; } export declare const MRT_TableBodyCell: FC<Props>; export declare const Memo_MRT_TableBodyCell: React.NamedExoticComponent<Props>; export {};