Files
2016-02-24 11:18:51 -05:00

26 lines
375 B
TypeScript

import {App} from 'ionic-angular';
@App({
templateUrl: 'main.html'
})
class ApiDemoApp {
data;
constructor() {
this.data = {
frodo: true,
sam: false,
eowyn: true,
legolas: true,
gimli: false,
saruman: true,
gandalf: true,
arwen: false,
boromir: false,
gollum: true,
galadriel: false
};
}
}