UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

19 lines (18 loc) 610 B
import { IgrCellInfo } from "./igr-cell-info"; import { TemplateCellModel as TemplateCellModel_internal } from "./TemplateCellModel"; /** * Represents backing information for a template cell. */ export declare class IgrTemplateCellInfo extends IgrCellInfo { protected createImplementation(): TemplateCellModel_internal; /** * @hidden */ get i(): TemplateCellModel_internal; constructor(); /** * Sets or gets the value to provide to the template. */ get value(): any; set value(v: any); }