import { NgModule, Type } from '@angular/core'; import { SharedModule } from '@shared'; import { DownloadComponentsListComponent } from './components/list/list.component'; import { DownloadRoutingModule } from './download-routing.module'; const COMPONENTS: Type[] = [DownloadComponentsListComponent]; @NgModule({ imports: [SharedModule, DownloadRoutingModule], declarations: COMPONENTS, }) export class DownloadModule {}