@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
15 lines (14 loc) • 491 B
TypeScript
import React from "react";
import { CellRendererParams, VirtualTableColumn } from "./VirtualTableProps";
type VirtualTableCellProps<T extends any> = {
dataKey: string;
column: VirtualTableColumn;
columns: VirtualTableColumn[];
rowData: any;
cellData: any;
rowIndex: any;
columnIndex: number;
cellRenderer: React.ComponentType<CellRendererParams<T>>;
};
export declare const VirtualTableCell: React.NamedExoticComponent<VirtualTableCellProps<any>>;
export {};