interface CacheOptions {
    cacheExtraKey?: string;
    cacheStore?: LocalStorage<ConfSchema>;
    cacheTTL: TimeInterval;
}

Properties

cacheExtraKey?: string
cacheStore?: LocalStorage<ConfSchema>
cacheTTL: TimeInterval