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