Add AccountCookie and UserCookie types

This commit is contained in:
Justin Edmund 2022-11-15 04:43:35 -08:00
parent 5d274a8336
commit 0c1fc9c1a1
2 changed files with 11 additions and 0 deletions

5
types/AccountCookie.d.ts vendored Normal file
View file

@ -0,0 +1,5 @@
interface AccountCookie {
userId: string
username: string
token: string
}

6
types/UserCookie.d.ts vendored Normal file
View file

@ -0,0 +1,6 @@
interface UserCookie {
picture: string
element: string
language: string
gender: number
}