refactor: run formatter

This commit is contained in:
Elias Schneider
2022-12-05 16:54:15 +01:00
parent 0499548dd3
commit 38f493ac5a
8 changed files with 16 additions and 13 deletions

View File

@@ -8,14 +8,14 @@ type User = {
export type CreateUser = {
username: string;
email: string;
password: string,
password: string;
isAdmin?: boolean;
};
export type UpdateUser = {
username?: string;
email?: string;
password?: string,
password?: string;
isAdmin?: boolean;
};