trying with the store and such

This commit is contained in:
talksik
2022-03-17 20:13:49 -04:00
parent 453121c987
commit 34fe8e0c29
21 changed files with 478 additions and 35758 deletions
@@ -0,0 +1,14 @@
import { ObjectId } from "mongodb";
export class GoogleUserInfo {
constructor(
public id: ObjectId,
public email: string,
public verifiedEmail: boolean,
public name: string,
public given_name: string,
public family_name: string,
public picture: string,
public locale: string
) {}
}