UNPKG

expo-router

Version:

Expo Router is a file-based router for React Native and web applications.

13 lines 524 B
import type { RouteNode } from './Route'; export type Screen = string | { path: string; screens: Record<string, Screen>; _route?: RouteNode; initialRouteName?: string; }; export declare function getReactNavigationScreensConfig(nodes: RouteNode[], metaOnly: boolean): Record<string, Screen>; export declare function getReactNavigationConfig(routes: RouteNode, metaOnly: boolean): { initialRouteName: undefined; screens: Record<string, Screen>; }; //# sourceMappingURL=getReactNavigationConfig.d.ts.map