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