Hierarchy

Properties

domain?: string

The domain the cookie is visible to. Defaults to the current browsing context's document's URL when adding a cookie.

expiry?: number

When the cookie expires.

The expiry is always returned in seconds since epoch when () retrieving cookies from the browser.

httpOnly?: boolean

Whether the cookie is an HTTP only cookie. Defaults to false when adding a new cookie.

name: string

The name of the cookie.

path?: string

The cookie path. Defaults to "/" when adding a cookie.

secure?: boolean

Whether the cookie is a secure cookie. Defaults to false when adding a new cookie.

value: string

The cookie value.

Generated using TypeDoc