mirror of
https://github.com/LucasVbr/meeting-app.git
synced 2026-05-13 17:21:53 +00:00
cd69818050
Took 2 hours 51 minutes
17 lines
246 B
TypeScript
17 lines
246 B
TypeScript
type CreateUserQuery = {
|
|
email: string
|
|
password: string
|
|
firstName: string
|
|
lastName: string
|
|
}
|
|
|
|
type ReadUserQuery = {
|
|
id?: string
|
|
}
|
|
|
|
type DeleteUserQuery = {
|
|
id: string
|
|
}
|
|
|
|
export type {CreateUserQuery, ReadUserQuery, DeleteUserQuery};
|