retrieveCookie fetches and parses cookies. This util should help us further reduce places where we're extracting and parsing with cookies in the business logic
5 lines
90 B
TypeScript
5 lines
90 B
TypeScript
interface GranblueCookie {
|
|
account: AccountCookie
|
|
user: UserCookie
|
|
locale: string
|
|
}
|