@exodus/react-navigation-native-stack
Version:
Native stack navigator using react-native-screens
11 lines (10 loc) • 464 B
TypeScript
/// <reference types="react" />
import type { ParamListBase, StackNavigationState } from '@react-navigation/native';
import type { NativeStackDescriptorMap, NativeStackNavigationHelpers } from '../types';
declare type Props = {
state: StackNavigationState<ParamListBase>;
navigation: NativeStackNavigationHelpers;
descriptors: NativeStackDescriptorMap;
};
export default function NativeStackView({ state, descriptors }: Props): JSX.Element;
export {};