datasquirel/package-shared/functions/api/social-login/handleSocialDb.d.ts
Benjamin Toby c49513c189 Updates
2024-12-06 11:44:26 +01:00

20 lines
433 B
TypeScript

declare namespace _exports {
export { FunctionReturn };
}
declare const _exports: import("../../../types").HandleSocialDbFunction;
export = _exports;
type FunctionReturn = {
/**
* - Did the operation complete successfully or not?
*/
success: boolean;
/**
* - User payload object: or "null"
*/
user: {
id: number;
first_name: string;
last_name: string;
} | null;
};