UNPKG

next-auth

Version:

Authentication for Next.js

20 lines 1.24 kB
import type { RequestInternal } from "../core"; import type { CommonProviderOptions } from "."; import type { User, Awaitable } from ".."; export interface CredentialInput { label?: string; type?: string; value?: string; placeholder?: string; } export interface CredentialsConfig<C extends Record<string, CredentialInput> = Record<string, CredentialInput>> extends CommonProviderOptions { type: "credentials"; credentials: C; authorize: (credentials: Record<keyof C, string> | undefined, req: Pick<RequestInternal, "body" | "query" | "headers" | "method">) => Awaitable<User | null>; } export declare type CredentialsProvider = <C extends Record<string, CredentialInput>>(options: Partial<CredentialsConfig<C>>) => CredentialsConfig<C>; export declare type CredentialsProviderType = "Credentials"; declare type UserCredentialsConfig<C extends Record<string, CredentialInput>> = Partial<Omit<CredentialsConfig<C>, "options">> & Pick<CredentialsConfig<C>, "authorize" | "credentials">; export default function Credentials<C extends Record<string, CredentialInput> = Record<string, CredentialInput>>(options: UserCredentialsConfig<C>): CredentialsConfig<C>; export {}; //# sourceMappingURL=credentials.d.ts.map