UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

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