Skip to content

Instantly share code, notes, and snippets.

@imskojs
Created July 18, 2017 04:01
Show Gist options
  • Save imskojs/25d86997711ee265f6a9aac6e7b21f1b to your computer and use it in GitHub Desktop.
Save imskojs/25d86997711ee265f6a9aac6e7b21f1b to your computer and use it in GitHub Desktop.
type casting from superclass to subclass
class x {
constructor(private navCtrl: NavController) {
}
ngAfterViewInit(){
const tab: Tab = this.navCtrl as any;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment