UNPKG

copper-ui

Version:

Modern React UI components library with TypeScript support, built on top of Ant Design

5 lines 346 B
import { CellContext } from '@tanstack/react-table'; import { ReactNode } from '../../../../node_modules/react'; import { TTableItem } from './table.types'; export type TTableCell<TItem extends TTableItem> = "number" | "string" | "boolean" | "date" | ((context: CellContext<TItem, unknown>) => ReactNode); //# sourceMappingURL=cell.types.d.ts.map