adizen-tanstack-table
Version:
Enhanced DataTable with TanStack Table
7 lines (6 loc) • 319 B
TypeScript
import { type CellContext } from "@tanstack/react-table";
import type { ColumnConfig } from "../types";
export declare function EditableCellWithFormatting<T>(props: CellContext<T, unknown> & {
columnConfig: ColumnConfig<T>;
onCellEdit?: (newValue: unknown) => void;
}): import("react/jsx-runtime").JSX.Element;