Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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<{
user: null;
session: null;
messageId?: string | null;
}
>
[src]