mantine-react-table
Version:
A fully featured Mantine implementation of TanStack React Table V8, written from the ground up in TypeScript.
9 lines (8 loc) • 479 B
TypeScript
/// <reference types="react" />
import { type MRT_Cell, type MRT_TableInstance } from '../types';
interface Props<TData extends Record<string, any> = {}> {
cell: MRT_Cell<TData>;
table: MRT_TableInstance<TData>;
}
export declare const MRT_EditCellTextInput: <TData extends Record<string, any> = {}>({ cell, table, }: Props<TData>) => string | number | boolean | Iterable<import("react").ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined;
export {};