Neah_Front/node_modules/next-auth/providers/spotify.d.ts
2025-04-08 14:45:23 +02:00

12 lines
400 B
TypeScript

import type { OAuthConfig, OAuthUserConfig } from ".";
export interface SpotifyImage {
url: string;
}
export interface SpotifyProfile extends Record<string, any> {
id: string;
display_name: string;
email: string;
images: SpotifyImage[];
}
export default function Spotify<P extends SpotifyProfile>(options: OAuthUserConfig<P>): OAuthConfig<P>;
//# sourceMappingURL=spotify.d.ts.map