17 lines
305 B
TypeScript
17 lines
305 B
TypeScript
export { default as authReducer } from './reducer';
|
|
export {
|
|
setUser,
|
|
setLocation,
|
|
completeProfile,
|
|
completeOnboarding,
|
|
logout,
|
|
clearError,
|
|
} from './reducer';
|
|
export type { AuthState } from './reducer';
|
|
export {
|
|
loginWithPhone,
|
|
verifyOtp,
|
|
updateProfile,
|
|
logoutUser,
|
|
} from './thunk';
|