igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
28 lines (27 loc) • 950 B
JavaScript
import { __extends } from "tslib";
import { IgcCellInfo } from "./igc-cell-info";
import { RowSeparatorModel as RowSeparatorModel_internal } from "./RowSeparatorModel";
/**
* Represents backing information for the row separators.
*/
var IgcRowSeparatorInfo = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgcRowSeparatorInfo, _super);
function IgcRowSeparatorInfo() {
return _super.call(this) || this;
}
IgcRowSeparatorInfo.prototype.createImplementation = function () {
return new RowSeparatorModel_internal();
};
Object.defineProperty(IgcRowSeparatorInfo.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
return IgcRowSeparatorInfo;
}(IgcCellInfo));
export { IgcRowSeparatorInfo };