NeahOpti/node_modules/next-auth/core/routes/providers.d.ts
2025-04-22 12:49:37 +02:00

16 lines
618 B
TypeScript

import type { ResponseInternal } from "..";
import type { InternalProvider } from "../types";
export interface PublicProvider {
id: string;
name: string;
type: string;
signinUrl: string;
callbackUrl: string;
}
/**
* Return a JSON object with a list of all OAuth providers currently configured
* and their signin and callback URLs. This makes it possible to automatically
* generate buttons for all providers when rendering client side.
*/
export default function providers(providers: InternalProvider[]): ResponseInternal<Record<string, PublicProvider>>;
//# sourceMappingURL=providers.d.ts.map