UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

20 lines (19 loc) 646 B
import { IgcSectionHeaderCellInfo } from "./igc-section-header-cell-info"; import { TemplateSectionHeaderCellModel as TemplateSectionHeaderCellModel_internal } from "./TemplateSectionHeaderCellModel"; /** * Backing information for a template section header cell in the grid. */ export class IgcTemplateSectionHeaderCellInfo extends IgcSectionHeaderCellInfo { createImplementation() { return new TemplateSectionHeaderCellModel_internal(); } /** * @hidden */ get i() { return this._implementation; } constructor() { super(); } }