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

31
node_modules/expo-router/build/matchers.d.ts generated vendored Normal file
View File

@@ -0,0 +1,31 @@
interface DynamicNameMatch {
name: string;
deep: boolean;
}
/** Match `[page]` -> `page` */
export declare function matchDynamicName(name: string): DynamicNameMatch | undefined;
/** Test `/` -> `page` */
export declare function testNotFound(name: string): boolean;
/** Match `(page)` -> `page` */
export declare function matchGroupName(name: string): string | undefined;
/** Match `(app)/(page)` -> `page` */
export declare function matchLastGroupName(name: string): string | undefined;
/** Match the first array group name `(a,b,c)/(d,c)` -> `'a,b,c'` */
export declare function matchArrayGroupName(name: string): string | undefined;
export declare function getNameFromFilePath(name: string): string;
export declare function getContextKey(name: string): string;
/** Remove `.js`, `.ts`, `.jsx`, `.tsx`, and the +api suffix */
export declare function removeSupportedExtensions(name: string): string;
/** Remove `.js`, `.ts`, `.jsx`, `.tsx` */
export declare function removeFileSystemExtensions(name: string): string;
export declare function removeFileSystemDots(filePath: string): string;
export declare function stripGroupSegmentsFromPath(path: string): string;
export declare function stripInvisibleSegmentsFromPath(path: string): string;
/**
* Match:
* - _layout files, +html, +not-found, string+api, etc
* - Routes can still use `+`, but it cannot be in the last segment.
*/
export declare function isTypedRoute(name: string): boolean;
export {};
//# sourceMappingURL=matchers.d.ts.map