Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
interface SecureCookieMapSetDeleteOptions
Deprecated
Deprecated

(will be removed in 0.212.0) Use https://deno.land/std/http/unstable_signed_cookie.ts instead.

import { type SecureCookieMapSetDeleteOptions } from "https://deno.land/std@0.209.0/http/unstable_cookie_map.ts";

Properties

optional
domain: string

The domain to scope the cookie for.

optional
expires: Date

When the cookie expires.

optional
maxAge: number

Number of seconds until the cookie expires

optional
httpOnly: boolean

A flag that indicates if the cookie is valid over HTTP only.

optional
ignoreInsecure: boolean

Do not error when signing and validating cookies over an insecure connection.

optional
overwrite: boolean

Overwrite an existing value.

optional
path: string

The path the cookie is valid for.

optional
secure: boolean

Override the flag that was set when the instance was created.

optional
sameSite:
| "strict"
| "lax"
| "none"
| boolean

Set the same-site indicator for a cookie.

optional
signed: boolean

Override the default behavior of signing the cookie.