You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
791 B
18 lines
791 B
import { ExpoConfig } from '@expo/config';
|
|
export declare function isDebug(): boolean;
|
|
export declare function isStaging(): boolean;
|
|
export declare function isLocal(): boolean;
|
|
export declare function getFeatureGateOverrides(): {
|
|
enable: string[];
|
|
disable: string[];
|
|
};
|
|
export declare function isInterstitiaLPageEnabled(): boolean;
|
|
export declare function maySkipManifestValidation(): boolean;
|
|
/**
|
|
* Returns true if we should use Metro using its JS APIs via @expo/dev-server (the modern and fast
|
|
* way), false if we should fall back to spawning it as a subprocess (supported for backwards
|
|
* compatibility with SDK39 and older).
|
|
*/
|
|
export declare function shouldUseDevServer(exp: Pick<ExpoConfig, 'sdkVersion'>): boolean;
|
|
export declare function shouldEnableAnalytics(): boolean;
|