igniteui-react-grids
Version:
Ignite UI React grid components.
28 lines (27 loc) • 1.05 kB
JavaScript
import { __extends } from "tslib";
import { IgrCellInfo } from "./igr-cell-info";
import { VerticalSeparatorCellModel as VerticalSeparatorCellModel_internal } from "./VerticalSeparatorCellModel";
/**
* Represents backing information for vertical separators.
*/
var IgrVerticalSeparatorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrVerticalSeparatorCellInfo, _super);
function IgrVerticalSeparatorCellInfo() {
return _super.call(this) || this;
}
IgrVerticalSeparatorCellInfo.prototype.createImplementation = function () {
return new VerticalSeparatorCellModel_internal();
};
Object.defineProperty(IgrVerticalSeparatorCellInfo.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
return IgrVerticalSeparatorCellInfo;
}(IgrCellInfo));
export { IgrVerticalSeparatorCellInfo };