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

View File

@@ -0,0 +1,9 @@
import type { RouteNode } from 'expo-router/internal/routing';
export declare function loadStaticParamsAsync(route: RouteNode): Promise<RouteNode>;
export declare function evalStaticParamsAsync(route: RouteNode, props: {
parentParams: any;
}, generateStaticParams?: (props: {
params?: Record<string, string | string[]>;
}) => Record<string, string | string[]>[]): Promise<Record<string, string | string[]>[] | null>;
export declare function assertStaticParams(route: Pick<RouteNode, 'contextKey' | 'dynamic'>, params: Record<string, string | string[]>): void;
//# sourceMappingURL=loadStaticParamsAsync.d.ts.map