member_webapp/@overflow/alert/alert.module.ts

36 lines
835 B
TypeScript
Raw Normal View History

2018-05-24 09:15:32 +00:00
import { NgModule } from '@angular/core';
2018-04-19 09:39:15 +00:00
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
2018-05-24 06:44:13 +00:00
// import { InputChipModule } from '@overflow/commons/component/input-chip/input-chip.module';
2018-04-19 09:39:15 +00:00
// import { DiscoveryStoreModule } from './discovery-store.module';
// import { DiscoveryRPCModule } from './discovery-rpc.module';
import { AlertLoggerModule } from './alert-logger.module';
import { COMPONENTS } from './component';
// import { SERVICES } from './service';
2018-05-30 10:00:46 +00:00
import { UIModule } from '@overflow/shared/ui/ui.module';
2018-04-19 09:39:15 +00:00
@NgModule({
imports: [
CommonModule,
// InputChipModule,
FormsModule,
2018-05-30 10:00:46 +00:00
UIModule,
2018-04-19 09:39:15 +00:00
AlertLoggerModule,
],
declarations: [
COMPONENTS
],
exports: [
COMPONENTS,
],
providers: [
// SERVICES,
],
})
export class AlertModule {
}