member_webapp/@overflow/probe/probe.module.ts
2018-05-29 21:21:57 +09:00

39 lines
1.1 KiB
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { COMPONENTS } from './component';
import { CONTAINER_COMPONENTS } from './container';
import { ProbeStoreModule } from './probe-store.module';
import { SERVICES } from './service';
import { PrimeNGModules } from '../commons/prime-ng/prime-ng.module';
import { FormsModule } from '@angular/forms';
import { MetaModule } from '@overflow/meta/meta.module';
import { KeyValueModule } from '@overflow/commons/component/key-value/key-value.module';
import { BlockProgressbarModule } from '@overflow/commons/component/block-progressbar/block-progressbar.module';
import { MessageModule } from '@overflow/commons/component/message/message.module';
@NgModule({
imports: [
CommonModule,
PrimeNGModules,
ProbeStoreModule,
FormsModule,
KeyValueModule,
MetaModule,
BlockProgressbarModule,
MessageModule
],
declarations: [
CONTAINER_COMPONENTS,
COMPONENTS,
],
exports: [
CONTAINER_COMPONENTS,
COMPONENTS,
],
providers: [
SERVICES,
]
})
export class ProbeModule { }