Files
2015-07-08 14:05:37 -05:00

18 lines
208 B
TypeScript

import {App, Alert} from 'ionic/ionic';
@App({
templateUrl: 'main.html'
})
class IonicApp {
constructor(alert: Alert) {
this.alert = alert;
}
showAlert() {
this.alert.open({
});
}
}