AuthOtpResponse

import type { AuthOtpResponse } from "https://esm.sh/@supabase/[email protected]/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<{
user: null;
session: null;
messageId?: string | null;
}
>
[src]