Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CookieListItem

import type { CookieListItem } from "https://raw.githubusercontent.com/worker-tools/signed-cookie-store/master/index.ts";
interface CookieListItem {
domain?: string | null;
expires?: Date | null;
name: string;
path?: string;
sameSite?: CookieSameSite;
secure?: boolean;
value: string;
}

§Properties

§
domain?: string | null
[src]
§
expires?: Date | null
[src]
§
name: string
[src]
§
path?: string
[src]
§
secure?: boolean
[src]
§
value: string
[src]