igniteui-react-grids
Version:
Ignite UI React grid components.
28 lines (27 loc) • 978 B
JavaScript
import { __extends } from "tslib";
import { IgrDefinitionBase } from "./igr-definition-base";
import { EditRowDefinition } from "./EditRowDefinition";
/**
* Represents a base class used to configure the appearance of the column header cells.
*/
var IgrEditRowDefinition = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrEditRowDefinition, _super);
function IgrEditRowDefinition(props) {
return _super.call(this, props) || this;
}
IgrEditRowDefinition.prototype.createImplementation = function () {
return new EditRowDefinition();
};
Object.defineProperty(IgrEditRowDefinition.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
return IgrEditRowDefinition;
}(IgrDefinitionBase));
export { IgrEditRowDefinition };