Interface ICookie

interface ICookie {
    domain?: null | string;
    expires?: null | Date;
    http_only?: boolean;
    key: string;
    max_age?: null | number;
    path?: null | string;
    same_site?: "Lax" | "None" | "Strict";
    secure?: boolean;
    value: string;
}

Implemented by

Properties

domain?: null | string
expires?: null | Date
http_only?: boolean
key: string
max_age?: null | number
path?: null | string
same_site?: "Lax" | "None" | "Strict"
secure?: boolean
value: string