lru-cache
    Preparing search index...

    Interface Entry<V>

    Entry objects used by LRUCache#load and LRUCache#dump, and returned by LRUCache#info.

    interface Entry<V> {
        size?: number;
        start?: number;
        ttl?: number;
        value: V;
    }

    Type Parameters

    • V
    Index

    Properties

    Properties

    size?: number
    start?: number
    ttl?: number
    value: V