This commit is contained in:
TheNetsky
2023-09-25 12:16:40 +02:00
parent 0a675dd6e0
commit c802492f18
27 changed files with 2115 additions and 1 deletions

4
src/interface/Account.ts Normal file
View File

@@ -0,0 +1,4 @@
export interface Account {
email: string;
password: string;
}