UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

28 lines (27 loc) 1.05 kB
import { __extends } from "tslib"; import { IgcCellInfo } from "./igc-cell-info"; import { VerticalSeparatorCellModel as VerticalSeparatorCellModel_internal } from "./VerticalSeparatorCellModel"; /** * Represents backing information for vertical separators. */ var IgcVerticalSeparatorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgcVerticalSeparatorCellInfo, _super); function IgcVerticalSeparatorCellInfo() { return _super.call(this) || this; } IgcVerticalSeparatorCellInfo.prototype.createImplementation = function () { return new VerticalSeparatorCellModel_internal(); }; Object.defineProperty(IgcVerticalSeparatorCellInfo.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); return IgcVerticalSeparatorCellInfo; }(IgcCellInfo)); export { IgcVerticalSeparatorCellInfo };