import {NgElement, Component, View as NgView, Parent} from 'angular2/angular2' import {IonicComponent} from 'ionic/config/component' @Component({ selector: 'ion-alert' }) @NgView({ template: `
` }) export class Alert { constructor( @NgElement() ngElement:NgElement ) { this.domElement = ngElement.domElement this.config = Alert.config.invoke(this) } } new IonicComponent(Alert, {})