From 87314b5a0daeea94a1426f93c4a00d2d2aacb90d Mon Sep 17 00:00:00 2001 From: Infad Kachancheri Date: Fri, 2 Jun 2017 18:25:59 +0530 Subject: [PATCH] exported report and chart models (#1925) --- .../ng2-activiti-analytics/index.ts | 3 +++ .../src/models/index.ts | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 ng2-components/ng2-activiti-analytics/src/models/index.ts diff --git a/ng2-components/ng2-activiti-analytics/index.ts b/ng2-components/ng2-activiti-analytics/index.ts index 005386dc72..15ca6cc653 100644 --- a/ng2-components/ng2-activiti-analytics/index.ts +++ b/ng2-components/ng2-activiti-analytics/index.ts @@ -37,6 +37,9 @@ export * from './src/components/analytics-report-parameters.component'; export * from './src/services/analytics.service'; export * from './src/components/widgets/index'; +// exporting models +export * from './src/models/index'; + export const ANALYTICS_DIRECTIVES: any[] = [ AnalyticsComponent, AnalyticsReportListComponent, diff --git a/ng2-components/ng2-activiti-analytics/src/models/index.ts b/ng2-components/ng2-activiti-analytics/src/models/index.ts new file mode 100644 index 0000000000..583a612d2b --- /dev/null +++ b/ng2-components/ng2-activiti-analytics/src/models/index.ts @@ -0,0 +1,19 @@ +/*! + * @license + * Copyright 2016 Alfresco Software, Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +export * from './chart.model'; +export * from './report.model';