igniteui-react-grids
Version:
Ignite UI React grid components.
25 lines (24 loc) • 871 B
JavaScript
import { __extends } from "tslib";
import { IgrSummaryRow } from "./igr-summary-row";
import { SummaryRowSection } from "./SummaryRowSection";
var IgrSummaryRowSection = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrSummaryRowSection, _super);
function IgrSummaryRowSection(props) {
return _super.call(this, props) || this;
}
IgrSummaryRowSection.prototype.createImplementation = function () {
return new SummaryRowSection();
};
Object.defineProperty(IgrSummaryRowSection.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
return IgrSummaryRowSection;
}(IgrSummaryRow));
export { IgrSummaryRowSection };