one
Version:
One is a new React Framework that makes Vite serve both native and web.
12 lines • 409 B
TypeScript
import type { RouteNode } from './router/Route';
export type Screen = string | {
path: string;
screens: Record<string, Screen>;
_route?: RouteNode;
initialRouteName?: string;
};
export declare function getReactNavigationConfig(routes: RouteNode, metaOnly: boolean): {
initialRouteName?: string;
screens: Record<string, Screen>;
};
//# sourceMappingURL=getReactNavigationConfig.d.ts.map