NeoScan_Radiologist/app/modules/Auth/navigation/index.ts
2025-08-05 18:01:36 +05:30

37 lines
849 B
TypeScript

/*
* File: index.ts
* Description: Barrel exports for Auth module navigation
* Design & Developed by Tech4Biz Solutions
* Copyright (c) Spurrin Innovations. All rights reserved.
*/
// Export main navigator
export { default as AuthStackNavigator } from './AuthStackNavigator';
// Export navigation types
export type {
AuthStackParamList,
AuthNavigationProp,
AuthScreenProps,
LoginScreenProps,
SignUpScreenProps,
} from './navigationTypes';
// Export navigation utilities
export {
navigateToLogin,
navigateToSignUp,
goBack,
resetToLogin,
resetToSignUp,
replaceWithLogin,
replaceWithSignUp,
navigateToSignUpAndClearStack,
navigateToLoginAndClearStack,
} from './navigationUtils';
/*
* End of File: index.ts
* Design & Developed by Tech4Biz Solutions
* Copyright (c) Spurrin Innovations. All rights reserved.
*/