forked from CSFrequency/react-firebase-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
30 lines (29 loc) · 933 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
export { default as useAuthState, AuthStateHook } from './useAuthState';
export { default as useCreateUserWithEmailAndPassword } from './useCreateUserWithEmailAndPassword';
export {
default as useSendEmailVerification,
SendEmailVerificationHook,
} from './useSendEmailVerification';
export {
default as useSendPasswordResetEmail,
SendPasswordResetEmailHook,
} from './useSendPasswordResetEmail';
export { default as useSignInWithEmailAndPassword } from './useSignInWithEmailAndPassword';
export {
useSignInWithApple,
useSignInWithFacebook,
useSignInWithGithub,
useSignInWithGoogle,
useSignInWithMicrosoft,
useSignInWithTwitter,
useSignInWithYahoo,
} from './useSignInWithPopup';
export {
useUpdateEmail,
useUpdatePassword,
useUpdateProfile,
UpdateEmailHook,
UpdatePasswordHook,
UpdateProfileHook,
} from './useUpdateUser';
export { EmailAndPasswordActionHook, SignInWithPopupHook } from './types';