UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

19 lines (18 loc) 588 B
import { Base, Type } from "igniteui-react-core"; import { ICellPresenter } from "./ICellPresenter"; import { INativeCell } from "./INativeCell"; import { GridCellBase } from "./GridCellBase"; import { CellModel } from "./CellModel"; /** * @hidden */ export declare class CellPresenterBase extends Base implements ICellPresenter { static $t: Type; a: GridCellBase; constructor(a: GridCellBase); modelUpdated(a: CellModel): void; protected b(a: CellModel): void; private c; get nativeCell(): INativeCell; get isCanvasBased(): boolean; }