(name: string)
| 8 | { |
| 9 | cookies: { |
| 10 | get(name: string) { |
| 11 | return cookieStore.get(name)?.value |
| 12 | }, |
| 13 | set(name: string, value: string, options: CookieOptions) { |
| 14 | try { |
| 15 | cookieStore.set({ name, value, ...options }) |
nothing calls this directly
no outgoing calls
no test coverage detected