UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

19 lines (18 loc) 610 B
import { IgcCellInfo } from "./igc-cell-info"; import { TemplateCellModel as TemplateCellModel_internal } from "./TemplateCellModel"; /** * Represents backing information for a template cell. */ export declare class IgcTemplateCellInfo extends IgcCellInfo { 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); }