Interface CacheItem

interface CacheItem {
    expires: number;
    key: string;
    value: unknown;
}

Properties

Properties

expires: number

The expiration time of the item in milliseconds since the Unix epoch.

key: string

The key of the item.

value: unknown

The value of the item.

Generated using TypeDoc