Merge pull request #7005 from Ritzlgrmft/master

Additional properties added
This commit is contained in:
Masahiro Wakame
2015-12-01 23:54:58 +09:00

View File

@@ -26,6 +26,9 @@ interface Device {
version: string;
/** Get the device's manufacturer. */
manufacturer: string;
}
/** Whether the device is running on a simulator. */
isVirtual: boolean;
/** Get the device hardware serial number. */
serial: string;}
declare var device: Device;