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

SignInWithIdTokenCredentials

type SignInWithIdTokenCredentials = {
provider:
| "google"
| "apple"
| "azure"
| "facebook"
| string;
token: string;
access_token?: string;
nonce?: string;
options?: {
captchaToken?: string;
}
;
}
;

§Type

§
{
provider:
| "google"
| "apple"
| "azure"
| "facebook"
| string;
token: string;
access_token?: string;
nonce?: string;
options?: {
captchaToken?: string;
}
;
}
[src]