I'm using ionic framework and I've noticed that on a lot of my pages i'm using the same modules.
import { Http } from '@angular/http';
import { Storage } from '@ionic/storage';
Then I have to set them in my constructor on each page.
constructor(public navCtrl: NavController, public navParams: NavParams, public http: Http, private storage: Storage)
Is there a better way to auto include these on all my pages? Or is what I'm doing the best solution?