adding core and i think it worked?

This commit is contained in:
talksik
2022-05-28 13:52:23 -05:00
parent eb470aeb51
commit 1e21941c77
7 changed files with 35 additions and 16 deletions
+3
View File
@@ -0,0 +1,3 @@
export const connectCore = () => {
console.log('CONNECTED COREEEE');
};
+15
View File
@@ -0,0 +1,15 @@
import { Timestamp } from 'firebase/firestore';
export class User {
lastUpdatedDate?: Timestamp;
constructor(
public uid: string,
public providerId: string,
public email: string,
public displayName?: string,
public photoUrl?: string,
public phoneNumber?: string,
public createdDate: Timestamp = Timestamp.now(),
) {}
}