first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

14
node_modules/@expo/metro-config/build/env.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
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 {};