Files
2024-07-01 09:28:59 -07:00

30 lines
661 B
TypeScript

/**
* Contains all kinds of information about the device, its operating system and software.
*/
/* tslint:disable:class-name */
/**
* Gets a value indicating if the app is running on the Android platform.
*/
export const isAndroid: boolean;
/**
* Gets a value indicating if the app is running on the iOS platform.
*/
export const isIOS: boolean;
/**
* Gets a value indicating if the app is running on an Apple platform.
*/
export const isApple: boolean;
/**
* Gets a value indicating if the app is running on the iOS platform.
*/
export const isVisionOS: boolean;
export * from './common';
export * from './device';
export * from './screen';