Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/std/http/cookie.ts>Cookie

A modern runtime for JavaScript and TypeScript.
Go to Latest
interface Cookie
import { type Cookie } from "https://deno.land/x/deno@v0.22.0/std/http/cookie.ts";

Properties

name: string
value: string
optional
expires: Date
optional
maxAge: number
optional
domain: string
optional
path: string
optional
secure: boolean
optional
httpOnly: boolean
optional
sameSite: SameSite
optional
unparsed: string[]