Edit schema

Took 2 hours 51 minutes
This commit is contained in:
Lucàs
2023-03-21 20:45:36 +01:00
parent e0c01cd08c
commit cd69818050
9 changed files with 253 additions and 191 deletions
+16
View File
@@ -0,0 +1,16 @@
type CreateUserQuery = {
email: string
password: string
firstName: string
lastName: string
}
type ReadUserQuery = {
id?: string
}
type DeleteUserQuery = {
id: string
}
export type {CreateUserQuery, ReadUserQuery, DeleteUserQuery};