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