ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...

    Interface CachedProductEntry

    A cached product data entry stored in chrome.storage.local. Wraps the raw product data with a timestamp for LRU eviction. Used by SupplierCache for the product data cache.

    interface CachedProductEntry {
        data: Record<string, unknown>;
        timestamp: number;
    }
    Index

    Properties

    Properties

    data: Record<string, unknown>

    The cached product data

    timestamp: number

    Epoch ms timestamp of when the entry was last accessed or created