UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

29 lines (28 loc) 695 B
import { IgcCellInfo } from "./igc-cell-info"; import { TemplateCellModel as TemplateCellModel_internal } from "./TemplateCellModel"; /** * Represents backing information for a template cell. */ export class IgcTemplateCellInfo extends IgcCellInfo { createImplementation() { return new TemplateCellModel_internal(); } /** * @hidden */ get i() { return this._implementation; } constructor() { super(); } /** * Sets or gets the value to provide to the template. */ get value() { return this.i.mh; } set value(v) { this.i.mh = v; } }