UNPKG

ts-method-cache

Version:

Data method caching logic based on TypeScript decorators

7 lines (6 loc) 346 B
import { CacheType } from '../../../../core/enum/cache-type.enum'; import { PersistentCacheObject } from '../../persistent-cache.object'; import { StorageCacheOptions } from '../interface/storage-cache-options'; export declare class StorageCacheObject extends PersistentCacheObject<StorageCacheOptions> { readonly cacheType: CacheType; }