style: format code and improve readability
This commit is contained in:
parent
35d8fbaea0
commit
51540c930b
12 changed files with 143 additions and 94 deletions
|
@ -1,4 +1,4 @@
|
|||
export interface AuthResponse {
|
||||
token: string;
|
||||
tokenType: string;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
export interface LoginRequest {
|
||||
usernameOrEmail: string;
|
||||
password: string;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,4 +2,4 @@ export interface RegisterRequest {
|
|||
email: string;
|
||||
username: string;
|
||||
password: string;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue