Check jwt expire date

This commit is contained in:
Takeshi Kimata
2024-05-25 19:50:01 +09:00
parent 25402bd3ba
commit 4092b14f3c
4 changed files with 16 additions and 4 deletions

View File

@@ -14,6 +14,7 @@ export type TokenProps = {
export type TokenType = {
access_token: string;
expires_at: number;
user: UserType;
};