Home > tough-cookie > SerializedCookie
A JSON object that is created when Cookie.toJSON() is called. This object will contain the properties defined in Cookie.serializableProperties.
Signature:
type SerializedCookie = {
key?: string;
value?: string;
[key: string]: unknown;
};