mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 13:02:56 +00:00
24 lines
588 B
TypeScript
24 lines
588 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { CommonModule } from '@angular/common';
|
||
|
|
import { FormsModule } from '@angular/forms';
|
||
|
|
|
||
|
|
import { IonicModule } from '@ionic/angular';
|
||
|
|
|
||
|
|
import { TinyMCEPageRoutingModule } from './tiny-mce-routing.module';
|
||
|
|
|
||
|
|
import { TinyMCEPage } from './tiny-mce.page';
|
||
|
|
import {Editor} from 'tinymce';
|
||
|
|
import { EditorModule } from '@tinymce/tinymce-angular';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [
|
||
|
|
CommonModule,
|
||
|
|
FormsModule,
|
||
|
|
IonicModule,
|
||
|
|
TinyMCEPageRoutingModule,
|
||
|
|
EditorModule
|
||
|
|
],
|
||
|
|
declarations: [TinyMCEPage]
|
||
|
|
})
|
||
|
|
export class TinyMCEPageModule {}
|