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

SignInWithPasswordlessCredentials

type SignInWithPasswordlessCredentials = {
email: string;
options?: {
emailRedirectTo?: string;
shouldCreateUser?: boolean;
data?: object;
captchaToken?: string;
}
;
}
| {
phone: string;
options?: {
shouldCreateUser?: boolean;
data?: object;
captchaToken?: string;
channel?: "sms" | "whatsapp";
}
;
}
;

§Type

§
{
email: string;
options?: {
emailRedirectTo?: string;
shouldCreateUser?: boolean;
data?: object;
captchaToken?: string;
}
;
}
| {
phone: string;
options?: {
shouldCreateUser?: boolean;
data?: object;
captchaToken?: string;
channel?: "sms" | "whatsapp";
}
;
}
[src]