2021-12-07 17:25:09 +01:00
|
|
|
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';
|
2022-03-31 11:56:49 +01:00
|
|
|
import { PdfViewerModule } from 'ng2-pdf-viewer';
|
2022-04-04 00:37:00 +01:00
|
|
|
import { NgxExtendedPdfViewerModule } from 'ngx-extended-pdf-viewer';
|
2021-12-07 17:25:09 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
|
|
|
|
FontAwesomeModule,
|
2022-03-03 08:21:22 +01:00
|
|
|
ViewMediaPageRoutingModule,
|
2022-04-04 00:37:00 +01:00
|
|
|
PdfViewerModule,
|
|
|
|
|
NgxExtendedPdfViewerModule,
|
2021-12-07 17:25:09 +01:00
|
|
|
],
|
|
|
|
|
declarations: [ViewMediaPage]
|
|
|
|
|
})
|
|
|
|
|
export class ViewMediaPageModule {}
|