import {App, Page} from '../../../../../ionic/ionic'; @Page({ templateUrl: 'main.html' }) class E2EPage { musicAlertOpts; gender: string; constructor() { this.musicAlertOpts = { title: '1994 Music', subTitle: 'Select your favorite' }; setTimeout(() => { this.gender = 'm'; }, 1500); } gamingCancel() { console.log('Gaming Select, Cancel'); } gamingChange(selectedValue) { console.log('Gaming Select, Change value:', selectedValue); } stpSelect() { console.log('STP selected') } resetGender() { this.gender = null; } } @App({ template: '' }) class E2EApp { root; constructor() { this.root = E2EPage; } }