expo-device
Version:
A universal module that gets physical information about the device running the application
26 lines • 636 B
TypeScript
/**
* An enum representing the different types of devices supported by Expo.
*/
export declare enum DeviceType {
/**
* An unrecognized device type.
*/
UNKNOWN = 0,
/**
* Mobile phone handsets, typically with a touch screen and held in one hand.
*/
PHONE = 1,
/**
* Tablet computers, typically with a touch screen that is larger than a usual phone.
*/
TABLET = 2,
/**
* Desktop or laptop computers, typically with a keyboard and mouse.
*/
DESKTOP = 3,
/**
* Device with TV-based interfaces.
*/
TV = 4
}
//# sourceMappingURL=Device.types.d.ts.map