Skip to main content

TypeAlias.AuthSignInArgs

type AuthSignInArgs = 
| {
emailInputName: string;
otpInputName: string;
type: typeof EmailOtp;
}
| {
otpInputName: string;
phoneCallingCode: string;
phoneInputName: string;
type: typeof PhoneOtp;
}
| {
type: typeof Google;
}
| {
type: typeof Auth0;
};

Arguments for signing in a user.