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

21
node_modules/expo-router/build/loaders/utils.d.ts generated vendored Normal file
View File

@@ -0,0 +1,21 @@
/**
* Convert a route's pathname to a loader module path.
*
* @example
* getLoaderModulePath(`/`); // `/_expo/loaders/index`
* getLoaderModulePath(`/about`) // `/_expo/loaders/about`
* getLoaderModulePath(`/posts/1`) // `/_expo/loaders/posts/1`
*/
export declare function getLoaderModulePath(routePath: string): string;
/**
* Fetches and parses a loader module from the given route path.
* This works in all environments including:
* 1. Development with Metro dev server
* 2. Production with static files (SSG)
* 3. SSR environments
*
* @see import('packages/@expo/cli/src/start/server/metro/createServerRouteMiddleware.ts').createRouteHandlerMiddleware
* @see import('packages/expo-server/src/vendor/environment/common.ts').createEnvironment
*/
export declare function fetchLoader(routePath: string): Promise<any>;
//# sourceMappingURL=utils.d.ts.map