@juki-team/commons - v0.1.10
    Preparing search index...

    Interface Cookie

    interface Cookie {
        domain: string;
        expires: number;
        httpOnly?: boolean;
        name: string;
        partitionKey?: string | CookiePartitionKey;
        partitionKeyOpaque?: boolean;
        path: string;
        priority?: CookiePriority;
        sameParty?: boolean;
        sameSite?: CookieSameSite;
        secure: boolean;
        session: boolean;
        size: number;
        value: string;
    }
    Index

    Properties

    domain: string
    expires: number
    httpOnly?: boolean
    name: string
    partitionKey?: string | CookiePartitionKey
    partitionKeyOpaque?: boolean
    path: string
    priority?: CookiePriority
    sameParty?: boolean
    sameSite?: CookieSameSite
    secure: boolean
    session: boolean
    size: number
    value: string