2023-12-28 16:18:49 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { FormattingModule } from '@app/core/formatting.module';
|
|
|
|
import { CommonFormsModule } from '@common/forms/common-forms.module';
|
|
|
|
import { CommonUiModule } from '@common/ui/common-ui.module';
|
|
|
|
import { StartNewDescriptionDialogComponent } from './start-new-description-dialog.component';
|
2024-03-19 17:27:30 +01:00
|
|
|
import { AutoCompleteModule } from '@app/library/auto-complete/auto-complete.module';
|
2023-12-28 16:18:49 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonUiModule,
|
|
|
|
CommonFormsModule,
|
|
|
|
FormattingModule,
|
2024-03-19 17:27:30 +01:00
|
|
|
AutoCompleteModule
|
2023-12-28 16:18:49 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
StartNewDescriptionDialogComponent,
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
StartNewDescriptionDialogComponent,
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class StartNewDescriptionDialogModule { }
|