-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcode.module.ts
37 lines (36 loc) · 1.25 KB
/
code.module.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
25
26
27
28
29
30
31
32
33
34
35
36
37
import { NgModule,CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { BreadCurmbComponent } from './component/bread-curmb/bread-curmb.component';
import { RouterModule } from '@angular/router';
import { CompDynamicCreateService } from '../editor/provider/comp-dynamic-create.service';
import { UserAgentService } from './tool/user-agent.service';
import { CommonModule } from '@angular/common';
import { BaseHttpService } from './provider/baseHttp/base-http.service';
import { HttpClientModule } from '@angular/common/http';
import { TempoToastrService } from './provider/toaster/toastr.service';
import { EmitSubService } from './emitSub/emit-sub.service';
import { IndexDBService } from './provider/indexDB/indexDB.service';
import { LocalStorageService } from './provider/localStorage/localStorage.service';
import { VariablesService } from './provider/global-variables/variables.service';
@NgModule({
declarations: [
BreadCurmbComponent
],
imports: [
RouterModule,
CommonModule,
HttpClientModule,
],
exports: [
BreadCurmbComponent
],
providers: [
EmitSubService,
BaseHttpService,
CompDynamicCreateService,
UserAgentService,
TempoToastrService,
IndexDBService,
LocalStorageService
]
})
export class CodeModule { }