TypeAlias.AuthSignInArgs
type AuthSignInArgs =
| {
emailInputName: string;
passwordInputName: string;
type: "email-password";
}
| {
emailInputName: string;
otpInputName: string;
type: "email-otp";
}
| {
otpInputName: string;
phoneCallingCode: string;
phoneInputName: string;
type: "phone-otp";
}
| {
type: "social-google";
};
Arguments for signing in a user.