effect-playwright
    Preparing search index...

    Interface Cookie

    interface Cookie {
        domain: string;
        expires: number;
        httpOnly: boolean;
        name: string;
        partitionKey?: string;
        path: string;
        sameSite: "None" | "Strict" | "Lax";
        secure: boolean;
        value: string;
    }
    Index
    domain: string
    expires: number

    Unix time in seconds.

    httpOnly: boolean
    name: string
    partitionKey?: string
    path: string
    sameSite: "None" | "Strict" | "Lax"
    secure: boolean
    value: string