update routing client
This commit is contained in:
parent
d7b7bc7be0
commit
218b2de59a
18 changed files with 377 additions and 148 deletions
3
client/src/app/core/models/errors.model.ts
Normal file
3
client/src/app/core/models/errors.model.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export interface Errors {
|
||||
errors: { [key: string]: string };
|
||||
}
|
||||
7
client/src/app/core/models/user.model.ts
Normal file
7
client/src/app/core/models/user.model.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
export interface User {
|
||||
email: string;
|
||||
token: string;
|
||||
username: string;
|
||||
bio: string;
|
||||
image: string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue