forked from infusion-code/powerbi-ng2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
24 lines (21 loc) · 1.15 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { NgModule } from '@angular/core';
import { HttpModule } from '@angular/http';
import { CommonModule } from '@angular/common';
import { RouterModule } from '@angular/router';
import { FormsModule } from '@angular/forms';
import { Report } from './models/report';
import { ReportFilter } from './components/reportFilter';
import { ReportNavigation } from './components/reportNavigation';
import { ReportViewer } from './components/reportViewer';
import { ReportsList } from './components/reportsList'
import { ReportDashboard } from './components/reportDashboard';
import { PowerBIService } from './services/service';
import { ReportsListService } from './services/reportsList';
export { Report, PowerBIService, ReportsListService, ReportNavigation, ReportViewer, ReportFilter, ReportsList, ReportDashboard }
@NgModule({
imports: [CommonModule, HttpModule, RouterModule, FormsModule ],
declarations: [ReportNavigation, ReportViewer, ReportFilter, ReportsList, ReportDashboard ],
exports: [ReportNavigation, ReportViewer, ReportFilter, ReportsList, ReportDashboard ],
providers: [PowerBIService, ReportsListService ]
})
export class PowerBIModule {}