ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
11 lines (10 loc) • 428 B
TypeScript
import type { AgBaseBean } from '../agStack/interfaces/agBaseBean';
import type { BeanCollection } from '../context/context';
import type { ICellComp } from '../rendering/cell/cellCtrl';
export interface ICellStyleFeature extends AgBaseBean<BeanCollection> {
setComp(comp: ICellComp): void;
applyCellStyles?(): void;
applyCellClassRules?(): void;
applyUserStyles?(): void;
applyClassesFromColDef?(): void;
}