Files
Fluxup_PAP/node_modules/@expo/metro-config/build/env.d.ts
2026-03-10 16:18:05 +00:00

15 lines
741 B
TypeScript

declare class Env {
/** Enable debug logging */
get EXPO_DEBUG(): boolean;
/** Enable the experimental "exotic" mode. [Learn more](https://blog.expo.dev/drastically-faster-bundling-in-react-native-a54f268e0ed1). */
get EXPO_USE_EXOTIC(): boolean;
/** The React Metro port that's baked into react-native scripts and tools. */
get RCT_METRO_PORT(): number;
/** Disable Environment Variable injection in client bundles. */
get EXPO_NO_CLIENT_ENV_VARS(): boolean;
/** Enable the use of Expo's custom metro require implementation. The custom require supports better debugging, tree shaking, and React Server Components. */
get EXPO_USE_METRO_REQUIRE(): boolean;
}
export declare const env: Env;
export {};