igniteui-react-grids
Version:
Ignite UI React grid components.
17 lines (16 loc) • 530 B
TypeScript
import { CellPresenterBase } from "./CellPresenterBase";
import { TemplateCell } from "./TemplateCell";
import { GridCellBase } from "./GridCellBase";
import { DataGrid } from "./DataGrid";
import { CellModel } from "./CellModel";
import { Type } from "igniteui-react-core";
/**
* @hidden
*/
export declare class TemplateCellPresenter extends CellPresenterBase {
static $t: Type;
private d;
constructor(a: GridCellBase, b: DataGrid);
get e(): TemplateCell;
protected b(a: CellModel): void;
}