UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

28 lines (27 loc) 1.15 kB
import { __extends } from "tslib"; 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. */ var IgcTemplateSectionHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgcTemplateSectionHeaderCellInfo, _super); function IgcTemplateSectionHeaderCellInfo() { return _super.call(this) || this; } IgcTemplateSectionHeaderCellInfo.prototype.createImplementation = function () { return new TemplateSectionHeaderCellModel_internal(); }; Object.defineProperty(IgcTemplateSectionHeaderCellInfo.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); return IgcTemplateSectionHeaderCellInfo; }(IgcSectionHeaderCellInfo)); export { IgcTemplateSectionHeaderCellInfo };