I’m try to get the reference to the App Component
import { App } from 'ionic-angular';
class AnotherComponent {
constructor (private app: App) {
}
doStuff () {
this.app.appRoot.someMethodDefinedInMyAppComponent()
}
}
someMethodDefinedInMyAppComponent() doesn’t seem to be available according to my editor’s intelli-sense.
How can I get the reference to MyApp component?