Auto-commit 2026-04-29 16:31
This commit is contained in:
14
node_modules/next-auth/providers/facebook.d.ts
generated
vendored
Normal file
14
node_modules/next-auth/providers/facebook.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import type { OAuthConfig, OAuthUserConfig } from ".";
|
||||
interface FacebookPictureData {
|
||||
url: string;
|
||||
}
|
||||
interface FacebookPicture {
|
||||
data: FacebookPictureData;
|
||||
}
|
||||
export interface FacebookProfile extends Record<string, any> {
|
||||
id: string;
|
||||
picture: FacebookPicture;
|
||||
}
|
||||
export default function Facebook<P extends FacebookProfile>(options: OAuthUserConfig<P>): OAuthConfig<P>;
|
||||
export {};
|
||||
//# sourceMappingURL=facebook.d.ts.map
|
||||
Reference in New Issue
Block a user