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