14 lines
429 B
TypeScript
14 lines
429 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonUiModule } from '../../common/ui/common-ui.module';
|
||
|
import { ExportMethodDialogComponent } from './export-method-dialog.component';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [CommonUiModule],
|
||
|
declarations: [ExportMethodDialogComponent],
|
||
|
exports: [ExportMethodDialogComponent],
|
||
|
entryComponents: [ExportMethodDialogComponent]
|
||
|
})
|
||
|
export class ExportMethodDialogModule {
|
||
|
constructor() { }
|
||
|
}
|