@itwin/presentation-components
Version:
React components based on iTwin.js Presentation library
18 lines • 517 B
TypeScript
/** @packageDocumentation
* @module Table
*/
import { PropertyRecord } from "@itwin/appui-abstract";
/**
* Props for [[TableCellRenderer]] component.
* @public
*/
export interface TableCellRendererProps {
/** Record containing cell value and property description. */
record: PropertyRecord;
}
/**
* Renderer for single table cell.
* @public
*/
export declare function TableCellRenderer(props: TableCellRendererProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=CellRenderer.d.ts.map