| 2 | import { cookiesName } from './constraints'; |
| 3 | |
| 4 | interface Cookie { |
| 5 | name: string; |
| 6 | value: string; |
| 7 | options: CookieSerializeOptions; |
| 8 | } |
| 9 | |
| 10 | export class CookieStore { |
| 11 | store: Record<string, Cookie>; |
nothing calls this directly
no outgoing calls
no test coverage detected