MCPcopy Create free account
hub / github.com/Linen-dev/linen.dev / Cookie

Interface Cookie

packages/auth-server/src/server/cookies.ts:4–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { cookiesName } from './constraints';
3
4interface Cookie {
5 name: string;
6 value: string;
7 options: CookieSerializeOptions;
8}
9
10export class CookieStore {
11 store: Record<string, Cookie>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected