Helpful
    Preparing search index...

    Represents a generic cookie.

    interface IZCookie {
        domain?: string;
        expires?: string;
        httpOnly?: boolean;
        name: string;
        sameSite?: "lax" | "strict" | "none";
        secure?: boolean;
        value: string;
    }
    Index

    Properties

    domain?: string

    The scope domain attached to the cookie.

    expires?: string

    The utc formatted date at which the cookie expires

    httpOnly?: boolean

    A flag that determines if this cookie can be ready by javascript.

    name: string

    The cookie name.

    sameSite?: "lax" | "strict" | "none"

    A value that determines how the cookie is sent by the browser.

    secure?: boolean

    A flag that determines if this is a secure cookie.

    value: string

    The cookie value.