module.ts.tmpl 281 B

1234567891011121314
  1. import { NgModule } from '@angular/core';
  2. import { IonicPageModule } from 'ionic-angular';
  3. import { $CLASSNAME } from './$FILENAME';
  4. @NgModule({
  5. declarations: [
  6. $CLASSNAME,
  7. ],
  8. imports: [
  9. IonicPageModule.forChild($CLASSNAME),
  10. ],
  11. })
  12. export class $CLASSNAMEModule {}