x/oak/mod.ts

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Very Popular
Go to Latest
interface CookiesSetDeleteOptions
import { type CookiesSetDeleteOptions } from "https://dotland-vbqsvsrpfncg.deno-staging.dev/x/oak@v11.1.0/mod.ts?p=prototype.patch&s=CookiesSetDeleteOptions";

Properties

optional
domain: string
[src]
optional
expires: Date
[src]
optional
httpOnly: boolean
[src]
optional
ignoreInsecure: boolean
[src]

For use in situations where requests are presented to Deno as "insecure" but are otherwise secure and so secure cookies can be treated as secure.

optional
maxAge: number
[src]
optional
overwrite: boolean
[src]
optional
path: string
[src]
optional
secure: boolean
[src]
optional
sameSite:
| "strict"
| "lax"
| "none"
| boolean
[src]
optional
signed: boolean
[src]