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

19
node_modules/expo-router/build/views/Screen.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import { ReactElement, ReactNode } from 'react';
export type ScreenProps<TOptions extends Record<string, any> = Record<string, any>> = {
/**
* Name is required when used inside a Layout component.
*
* When used in a route, this can be an absolute path like `/(root)` to the parent route or a relative path like `../../` to the parent route.
* This should not be used inside of a Layout component.
* @example `/(root)` maps to a layout route `/app/(root).tsx`.
*/
name?: string;
initialParams?: Record<string, any>;
options?: TOptions;
};
/** Component for setting the current screen's options dynamically. */
export declare function Screen<TOptions extends object = object>({ name, options }: ScreenProps<TOptions>): null;
export declare function isScreen(child: ReactNode, contextKey?: string): child is ReactElement<ScreenProps & {
name: string;
}>;
//# sourceMappingURL=Screen.d.ts.map