import {IonicView, Device} from 'ionic/ionic'; @IonicView({ template: ` Vibration

Device

` }) export class DevicePage { doDevice() { let device = Device.getDevice(); console.log('Got device', device); } }