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