nativescript-appinfo
Version:
Read the app details of your NativeScript app
14 lines (13 loc) • 357 B
TypeScript
export declare class PlatformDetails {
private ios;
private android;
private osVersionDetails;
private osMajorVersion;
constructor();
isAndroid(): boolean;
isIOS(): boolean;
isPermissionSupportByPlatform(permission: any): boolean;
getOSVersionDetails(): string;
getOSMajorVersion(): number;
toString(): string;
}