igniteui-react-core
Version:
Ignite UI React Core.
39 lines (38 loc) • 2.36 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { Base, markType } from "./type";
import { DataChartToolbarIconsDescriptionModule } from "./DataChartToolbarIconsDescriptionModule";
import { DataChartAnnotationDescriptionModule } from "./DataChartAnnotationDescriptionModule";
import { AnnotationLayerProxyDescriptionModule } from "./AnnotationLayerProxyDescriptionModule";
import { DataChartCategoryTrendLineDescriptionModule } from "./DataChartCategoryTrendLineDescriptionModule";
import { DataChartInteractivityDescriptionModule } from "./DataChartInteractivityDescriptionModule";
import { CalloutLayerDescriptionModule } from "./CalloutLayerDescriptionModule";
import { ValueLayerDescriptionModule } from "./ValueLayerDescriptionModule";
import { CrosshairLayerDescriptionModule } from "./CrosshairLayerDescriptionModule";
/**
* @hidden
*/
var DataChartToolbarDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataChartToolbarDescriptionModule, _super);
function DataChartToolbarDescriptionModule() {
return _super !== null && _super.apply(this, arguments) || this;
}
DataChartToolbarDescriptionModule.register = function (a) {
DataChartToolbarIconsDescriptionModule.register(a);
DataChartAnnotationDescriptionModule.register(a);
AnnotationLayerProxyDescriptionModule.register(a);
DataChartCategoryTrendLineDescriptionModule.register(a);
DataChartInteractivityDescriptionModule.register(a);
CalloutLayerDescriptionModule.register(a);
ValueLayerDescriptionModule.register(a);
CrosshairLayerDescriptionModule.register(a);
};
DataChartToolbarDescriptionModule.$t = markType(DataChartToolbarDescriptionModule, 'DataChartToolbarDescriptionModule');
return DataChartToolbarDescriptionModule;
}(Base));
export { DataChartToolbarDescriptionModule };