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

SignInWithPasswordCredentials

type SignInWithPasswordCredentials = {
email: string;
password: string;
options?: {
captchaToken?: string;
}
;
}
| {
phone: string;
password: string;
options?: {
captchaToken?: string;
}
;
}
;

§Type

§
{
email: string;
password: string;
options?: {
captchaToken?: string;
}
;
}
| {
phone: string;
password: string;
options?: {
captchaToken?: string;
}
;
}
[src]