UNPKG

@mrii/react-table-builder

Version:
9 lines (8 loc) 431 B
/// <reference types="react" /> import type { GridCellParams, GridColDef } from '@mui/x-data-grid'; import type { ColumnBaseProps } from "../../../types"; export declare const imageColumnRenderCell: ({ alt }: ImageColumnExtraProps) => GridColDef['renderCell']; export type ImageColumnExtraProps = { alt: (record: GridCellParams) => string; }; export declare const ImageColumn: React.FC<ColumnBaseProps<ImageColumnExtraProps>>;