9 lines
299 B
TypeScript
9 lines
299 B
TypeScript
/**
|
|
* Login with Google Function
|
|
* ===============================================================================
|
|
* @description This function uses google identity api to login a user with datasquirel
|
|
*/
|
|
export default function logout(params?: {
|
|
googleClientId?: any;
|
|
}): Promise<boolean>;
|