Add token valification unit test

This commit is contained in:
Takeshi Kimata
2024-06-01 13:52:46 +09:00
parent 39d5ab16a6
commit 09a7e08667
5 changed files with 221 additions and 59 deletions

View File

@@ -6,7 +6,7 @@ export type UserType = {
password: string;
username: string;
role: number;
avatarPath: string;
avatarPath: string | null;
} | null;
export type TokenProps = {