Files
Jad Salhani 9f2721709e Removed redundant this.nav declaration (#6244)
`this.nav = nav` is already present due to the `public nav: NavController` declaration, having it in the constructor as well is redundant
2016-04-20 15:05:06 -05:00

15 lines
389 B
TypeScript

import {Page, NavController} from 'ionic-angular';
/*
Generated class for the <%= jsClassName %> page.
See http://ionicframework.com/docs/v2/components/#navigation for more info on
Ionic pages and navigation.
*/
@Page({
templateUrl: 'build/<%= directory %>/<%= fileName %>/<%= fileName %>.html',
})
export class <%= jsClassName %> {
constructor(public nav: NavController) {}
}