diff --git a/types/AccountCookie.d.ts b/types/AccountCookie.d.ts new file mode 100644 index 00000000..444f2e4a --- /dev/null +++ b/types/AccountCookie.d.ts @@ -0,0 +1,5 @@ +interface AccountCookie { + userId: string + username: string + token: string +} diff --git a/types/UserCookie.d.ts b/types/UserCookie.d.ts new file mode 100644 index 00000000..df04aadc --- /dev/null +++ b/types/UserCookie.d.ts @@ -0,0 +1,6 @@ +interface UserCookie { + picture: string + element: string + language: string + gender: number +}