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

ResendParams

import type { ResendParams } from "https://esm.sh/@supabase/supabase-js@2.89.0/dist/index.d.mts";
type ResendParams = {
type: Extract<EmailOtpType, "signup" | "email_change">;
email: string;
options?: {
emailRedirectTo?: string;
captchaToken?: string;
}
;
}
| {
type: Extract<MobileOtpType, "sms" | "phone_change">;
phone: string;
options?: {
captchaToken?: string;
}
;
}
;

§Type

§
{
type: Extract<EmailOtpType, "signup" | "email_change">;
email: string;
options?: {
emailRedirectTo?: string;
captchaToken?: string;
}
;
}
| {
type: Extract<MobileOtpType, "sms" | "phone_change">;
phone: string;
options?: {
captchaToken?: string;
}
;
}
[src]