UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

11 lines (10 loc) 397 B
import type { ICellComp } from '../rendering/cell/cellCtrl'; /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export interface ICellRangeFeature { setComp(cellComp: ICellComp): void; unsetComp(): void; refreshRangeStyleAndHandle(): void; updateRangeBordersIfRangeCount(): void; onCellSelectionChanged(): void; destroy(): void; }