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