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

x/hex/src/fw/service/deps.ts>oak.CookiesSetDeleteOptions

An ecosystem delivering practices, philosophy and portability. Powered By Deno and JavaScript.
Latest
interface oak.CookiesSetDeleteOptions
import { type oak } from "https://deno.land/x/hex@0.6.5/src/fw/service/deps.ts";
const { CookiesSetDeleteOptions } = oak;

Properties

optional
domain: string
optional
expires: Date
optional
httpOnly: boolean
optional
ignoreInsecure: boolean

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
optional
overwrite: boolean
optional
path: string
optional
secure: boolean
optional
sameSite:
| "strict"
| "lax"
| "none"
| boolean
optional
signed: boolean