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