interface Properties {
    creation?: Date;
    creationIndex?: number;
    domain?: string;
    expires?: Date | "Infinity";
    extensions?: string[];
    hostOnly?: boolean;
    httpOnly?: boolean;
    key?: string;
    lastAccessed?: Date;
    maxAge?: number | "Infinity" | "-Infinity";
    path?: string;
    pathIsDefault?: boolean;
    sameSite?: string;
    secure?: boolean;
    value?: string;
}

Properties

creation?: Date
creationIndex?: number
domain?: string
expires?: Date | "Infinity"
extensions?: string[]
hostOnly?: boolean
httpOnly?: boolean
key?: string
lastAccessed?: Date
maxAge?: number | "Infinity" | "-Infinity"
path?: string
pathIsDefault?: boolean
sameSite?: string
secure?: boolean
value?: string