37 lines
849 B
TypeScript
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.
|
|
*/
|