igniteui-react-grids
Version:
Ignite UI React grid components.
15 lines (14 loc) • 445 B
TypeScript
import { CellPresenterBase } from "./CellPresenterBase";
import { TextCell } from "./TextCell";
import { GridCellBase } from "./GridCellBase";
import { CellModel } from "./CellModel";
import { Type } from "igniteui-react-core";
/**
* @hidden
*/
export declare class TextCellPresenter extends CellPresenterBase {
static $t: Type;
constructor(a: GridCellBase);
get d(): TextCell;
protected b(a: CellModel): void;
}