@iocium/cachekit - v1.0.1
    Preparing search index...

    Interface CacheRecord

    Represents a cache entry, with optional expiration timestamp.

    interface CacheRecord {
        expiresAt?: number;
        value: any;
    }
    Index

    Properties

    Properties

    expiresAt?: number
    value: any