datasquirel/dist/package-shared/functions/api/social-login/facebookLogin.d.ts
Benjamin Toby 6593047efd Updates
2025-04-18 12:06:15 +01:00

9 lines
189 B
TypeScript

import { UserType } from "../../../types";
/**
* # Facebook Login
*/
export default function facebookLogin({ usertype, body, }: {
body: any;
usertype: UserType;
}): Promise<any>;