1 | /**
|
2 | * Contains all kinds of information about the device, its operating system and software.
|
3 | */
|
4 |
|
5 | /* tslint:disable:class-name */
|
6 |
|
7 | /**
|
8 | * Gets a value indicating if the app is running on the Android platform.
|
9 | */
|
10 | export const isAndroid: boolean;
|
11 |
|
12 | /**
|
13 | * Gets a value indicating if the app is running on the iOS platform.
|
14 | */
|
15 | export const isIOS: boolean;
|
16 |
|
17 | /**
|
18 | * Gets a value indicating if the app is running on an Apple platform.
|
19 | */
|
20 | export const isApple: boolean;
|
21 |
|
22 | /**
|
23 | * Gets a value indicating if the app is running on the iOS platform.
|
24 | */
|
25 | export const isVisionOS: boolean;
|
26 |
|
27 | export * from './common';
|
28 | export * from './device';
|
29 | export * from './screen';
|