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