6 lines
379 B
TypeScript
6 lines
379 B
TypeScript
import { APIResponseObject, GoogleAuthParams } from "../../../types";
|
|
/**
|
|
* # SERVER FUNCTION: Login with google Function
|
|
*/
|
|
export default function googleAuth({ apiKey, token, database, response, encryptionKey, encryptionSalt, additionalFields, additionalData, apiUserID, debug, secureCookie, loginOnly, useLocal, apiVersion, }: GoogleAuthParams): Promise<APIResponseObject>;
|