Files

28 lines
445 B
TypeScript

import { NgModule, ModuleWithProviders } from '@angular/core';
import { IonicApp } from './app-root';
import { NavModule } from '../nav/nav.module';
@NgModule({
imports: [
NavModule
],
declarations: [
IonicApp
],
exports: [
IonicApp
],
entryComponents: [
IonicApp
]
})
export class AppModule {
public static forRoot(): ModuleWithProviders {
return {
ngModule: AppModule, providers: []
};
}
}