SignInWithIdTokenCredentials

import type { SignInWithIdTokenCredentials } from "https://esm.sh/@supabase/[email protected]/dist/index.d.mts";
type SignInWithIdTokenCredentials = {
provider:
| "google"
| "apple"
| "azure"
| "facebook"
| "kakao"
| `custom:${string}`
| (string & {});
token: string;
access_token?: string;
nonce?: string;
options?: {
captchaToken?: string;
}
;
}
;

§Type

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