Auto-commit 2026-04-29 16:31
This commit is contained in:
20
node_modules/next-auth/providers/credentials.d.ts
generated
vendored
Normal file
20
node_modules/next-auth/providers/credentials.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
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
|
||||
Reference in New Issue
Block a user