UNPKG

@youngshand/payload-auth-plugin

Version:

A temporary fork for testing of Authentication plugin for Payload CMS, use @payload-auth-plugin

8 lines 432 B
import { AuthPluginOutput } from "../types.js"; type BaseOptions = { name: string; }; export type OauthProvider = "google" | "github" | "apple" | "cognito" | "gitlab" | "msft-entra" | "slack" | "atlassian" | "auth0" | "discord" | "facebook" | "jumpcloud" | "twitch" | "okta"; export declare const oauth: (options: BaseOptions, provider: OauthProvider) => Promise<AuthPluginOutput>; export {}; //# sourceMappingURL=oauth.d.ts.map