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

26
node_modules/expo-router/build/rsc/router/common.d.ts generated vendored Normal file
View File

@@ -0,0 +1,26 @@
/**
* Copyright © 2024 650 Industries.
* Copyright © 2024 2023 Daishi Kato
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
export type RouteProps = {
path: string;
query: string;
hash: string;
};
export declare function getComponentIds(path: string): readonly string[];
export declare function getInputString(path: string): string;
export declare function parseInputString(input: string): string;
export declare const PARAM_KEY_SKIP = "expo_router_skip";
export declare const SHOULD_SKIP_ID = "/SHOULD_SKIP";
export declare const LOCATION_ID = "/LOCATION";
export type ShouldSkip = (readonly [
componentId: string,
components: readonly [
path?: boolean,
keys?: string[]
]
])[];
//# sourceMappingURL=common.d.ts.map