Files
2015-05-29 18:44:32 -05:00

16 lines
250 B
JavaScript

import {ApplicationRef} from 'angular2/angular2';
export class Ionic {
constructor() {
}
setAppRef(appRef: ApplicationRef) {
this.appRef = appRef;
console.log('Got app ref', appRef);
}
getAppRef() {
return this.appRef;
}
}