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

ResendParams

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]