Commit 287af9b2 authored by Mehdi Achour's avatar Mehdi Achour

docs: add missing getApplicationName() definitiion

# and use same order as in the .d.ts file
parent c97bcadb
......@@ -9,6 +9,7 @@ declare module.exports: {
getSystemName: () => string,
getSystemVersion: () => string,
getBundleId: () => string,
getApplicationName: () => string,
getBuildNumber: () => string,
getVersion: () => string,
getReadableVersion: () => string,
......@@ -17,18 +18,18 @@ declare module.exports: {
getDeviceLocale: () => string,
getDeviceCountry: () => string,
getTimezone: () => string,
getInstanceID: () => string,
isEmulator: () => boolean,
isTablet: () => boolean,
is24Hour: () => boolean,
isPinOrFingerprintSet: () => (cb: (isPinOrFingerprintSet: boolean) => void) => void,
getAPILevel: () => number,
getInstanceID: () => string,
getPhoneNumber: () => ?string,
getFirstInstallTime: () => number,
getLastUpdateTime: () => number,
getSerialNumber: () => string,
getAPILevel: () => number,
getIPAddress: () => Promise<string>,
getMACAddress: () => Promise<string>,
getPhoneNumber: () => ?string,
getCarrier: () => string,
getTotalMemory: () => number,
getMaxMemory: () => number,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment