Skip to content

Instantly share code, notes, and snippets.

@bogoslavskiy
Created March 5, 2020 17:21
Show Gist options
  • Save bogoslavskiy/e181894afdf367ddfcedc16904d43aaa to your computer and use it in GitHub Desktop.
Save bogoslavskiy/e181894afdf367ddfcedc16904d43aaa to your computer and use it in GitHub Desktop.
import { StackNavigationProp } from '@react-navigation/stack';
import { RouteProp } from '@react-navigation/native';
export type AuthStackParams = {
Login: undefined;
};
export type AuthNavProps<T extends keyof AuthStackParams> = {
navigation: StackNavigationProp<AuthStackParams, T>;
route: RouteProp<AuthStackParams, T>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment