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

SignInWithIdTokenCredentials

import type { SignInWithIdTokenCredentials } from "https://esm.sh/@supabase/supabase-js@2.89.0/dist/index.d.mts";
type SignInWithIdTokenCredentials = {
provider:
| "google"
| "apple"
| "azure"
| "facebook"
| "kakao"
| (string & {});
token: string;
access_token?: string;
nonce?: string;
options?: {
captchaToken?: string;
}
;
}
;

§Type

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