AuthOtpResponse
import type { AuthOtpResponse } from "https://esm.sh/@supabase/supabase-js@2.89.0/dist/index.d.mts";AuthOtpResponse is returned when OTP is used.
{@see AuthResponse}
type AuthOtpResponse = RequestResultSafeDestructure<{
user: null;
session: null;
messageId?: string | null;
}>;§Type
§
RequestResultSafeDestructure<{
[src]user: null;
session: null;
messageId?: string | null;
}>