[DURACOM-191] run optimize imports and lint fix

This commit is contained in:
Andrea Barbasso
2024-03-12 20:10:23 +01:00
parent fe23ac6a82
commit ee265f855b
1481 changed files with 23238 additions and 16561 deletions

View File

@@ -8,6 +8,7 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FileUploadModule } from 'ng2-file-upload';
import { FileDropzoneNoUploaderComponent } from './file-dropzone-no-uploader/file-dropzone-no-uploader.component';
import { UploaderComponent } from './uploader/uploader.component';
@@ -17,17 +18,17 @@ const COMPONENTS = [
];
@NgModule({
imports: [
CommonModule,
FileUploadModule,
...COMPONENTS
],
providers: [
...COMPONENTS,
],
exports: [
...COMPONENTS,
FileUploadModule,
imports: [
CommonModule,
FileUploadModule,
...COMPONENTS,
],
providers: [
...COMPONENTS,
],
exports: [
...COMPONENTS,
FileUploadModule,
],
})
export class UploadModule {