forked from EddyVerbruggen/nativescript-appversion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappversion.d.ts
37 lines (32 loc) · 1.07 KB
/
appversion.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
declare module "nativescript-appversion" {
/**
* Returns the version of your app.
* - For iOS we read it from *.plist's CFBundleShortVersionString.
* - For Android we read the versionName from AndroidManifest.xml.
*/
export function getVersionName(): Promise<string>;
/**
* Same as getVersionName, but synchronous.
*/
export function getVersionNameSync(): string;
/**
* Returns the app's ID.
* - For iOS we read it from *.plist's bundle identifier.
* - For Android we read the package name.
*/
export function getAppId(): Promise<string>;
/**
* Same as getAppId, but synchronous.
*/
export function getAppIdSync(): string;
/**
* Returns the version code (build number) of your app.
* - For iOS we read it from *.plist's CFBundleVersion.
* - For Android we read the versionCode from AndroidManifest.xml.
*/
export function getVersionCode(): Promise<string>;
/**
* Same as getVersionCode, but synchronous.
*/
export function getVersionCodeSync(): string;
}