import { MatrixGridColumn } from '../gridColumn'; import { GridRowContext } from '../gridRowContext/gridRowContext.interface'; /** * Context that is available in content renderer at cell level (any type of cell) */ export interface GridCellContext = MatrixGridColumn> extends GridRowContext { /** * Metadata for current cell (column) */ readonly metadata: TColumnMetadata; } //# sourceMappingURL=gridCellContext.interface.d.ts.map