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