This commit is contained in:
E
2021-03-07 20:45:57 -07:00
parent 181a2bbb74
commit 1e8d655d1d
7 changed files with 83 additions and 58 deletions

View File

@@ -1,10 +1,10 @@
export type Client = {
name: string;
email: string;
phone: number;
activeSession?: boolean
};
name: string
email: string
phone: number
photos: string[]
}
export type Session = {
timestamp: number;
};
timestamp: number
}