update routing client

This commit is contained in:
Kenta420-Poom 2023-09-18 08:50:13 +07:00
parent d7b7bc7be0
commit 218b2de59a
18 changed files with 377 additions and 148 deletions

View file

@ -0,0 +1,3 @@
export interface Errors {
errors: { [key: string]: string };
}

View file

@ -0,0 +1,7 @@
export interface User {
email: string;
token: string;
username: string;
bio: string;
image: string;
}