expo-application
Version:
A universal module that gets native application information such as its ID, app name, and build version at runtime
17 lines • 516 B
TypeScript
/**
* @platform ios
*/
export declare enum ApplicationReleaseType {
UNKNOWN = 0,
SIMULATOR = 1,
ENTERPRISE = 2,
DEVELOPMENT = 3,
AD_HOC = 4,
APP_STORE = 5
}
/**
* Maps to the [`aps-environment`](https://developer.apple.com/documentation/bundleresources/entitlements/aps-environment) key in the native target's registered entitlements.
* @platform ios
*/
export type PushNotificationServiceEnvironment = 'development' | 'production' | null;
//# sourceMappingURL=Application.types.d.ts.map