igniteui-react-grids
Version:
Ignite UI React grid components.
20 lines (19 loc) • 547 B
JavaScript
import { IgrDefinitionBase } from "./igr-definition-base";
import { EditRowDefinition } from "./EditRowDefinition";
/**
* Represents a base class used to configure the appearance of the column header cells.
*/
export class IgrEditRowDefinition extends IgrDefinitionBase {
createImplementation() {
return new EditRowDefinition();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor(props) {
super(props);
}
}