5 lines
80 B
TypeScript
5 lines
80 B
TypeScript
interface AccountCookie {
|
|
userId: string
|
|
username: string
|
|
token: string
|
|
}
|