parent
0fad937554
commit
3ee7a41895
2 changed files with 21 additions and 5 deletions
@ -1,3 +1,11 @@ |
|||||||
type CookieJar = Record<string, unknown>; |
type CookieJar = Record<string, unknown>; |
||||||
|
|
||||||
type SessionUser = { name: string; uuid: string }; |
type SessionCookieUser = { |
||||||
|
name: string; |
||||||
|
uuid: string; |
||||||
|
}; |
||||||
|
|
||||||
|
type SessionCookie = { |
||||||
|
expires: string; |
||||||
|
user: SessionCookieUser; |
||||||
|
}; |
||||||
|
Loading…
Reference in new issue