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

CookieInit

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

§Properties

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