UNPKG

@1771technologies/lytenyte-pro

Version:

Blazingly fast headless React data grid with 100s of features.

7 lines (6 loc) 277 B
import { type JSX, type ReactNode } from "react"; import type { RowCellLayout } from "../+types"; export interface CellProps { readonly cell: RowCellLayout<any>; } export declare const Cell: (props: Omit<JSX.IntrinsicElements["div"], "children"> & CellProps) => ReactNode;