@nativescript/core
Version:
A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.
21 lines (20 loc) • 517 B
TypeScript
declare class DeviceRef {
private _manufacturer;
private _model;
private _osVersion;
private _sdkVersion;
private _deviceType;
private _uuid;
get manufacturer(): string;
get os(): string;
get osVersion(): string;
get model(): string;
get sdkVersion(): string;
get deviceType(): 'Phone' | 'Tablet';
get uuid(): string;
get language(): string;
get region(): string;
}
export declare const Device: DeviceRef;
export declare const device: DeviceRef;
export {};