mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
27 lines
763 B
TypeScript
27 lines
763 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { ViewMediaPageRoutingModule } from './view-media-routing.module';
|
|
|
|
import { ViewMediaPage } from './view-media.page';
|
|
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
|
import { PdfViewerModule } from 'ng2-pdf-viewer';
|
|
import { NgxExtendedPdfViewerModule } from 'ngx-extended-pdf-viewer';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
FontAwesomeModule,
|
|
ViewMediaPageRoutingModule,
|
|
PdfViewerModule,
|
|
NgxExtendedPdfViewerModule,
|
|
],
|
|
declarations: [ViewMediaPage]
|
|
})
|
|
export class ViewMediaPageModule {}
|