1 | import type { NavigationState, ParamListBase } from '@react-navigation/routers';
|
2 | import type * as React from 'react';
|
3 | import type { EventMapBase, TypedNavigator } from './types';
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 | export default function createNavigatorFactory<State extends NavigationState, ScreenOptions extends {}, EventMap extends EventMapBase, NavigatorComponent extends React.ComponentType<any>>(Navigator: NavigatorComponent): <ParamList extends ParamListBase>() => TypedNavigator<ParamList, State, ScreenOptions, EventMap, NavigatorComponent>;
|
12 |
|
\ | No newline at end of file |