UNPKG

mantine-react-table

Version:

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

10 lines (9 loc) 455 B
import { type RefObject } from 'react'; import { type MRT_Row, type MRT_TableInstance } from '../types'; interface Props<TData extends Record<string, any> = {}> { row: MRT_Row<TData>; rowRef: RefObject<HTMLTableRowElement>; table: MRT_TableInstance<TData>; } export declare const MRT_TableBodyRowGrabHandle: <TData extends Record<string, any> = {}>({ row, rowRef, table, }: Props<TData>) => import("react/jsx-runtime").JSX.Element; export {};