generated from erangel1/generic-template
initial commit. phase 1 complete
This commit is contained in:
+14
@@ -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