UNPKG

angular-caching

Version:

Lightweight library for data caching

7 lines (6 loc) 256 B
export interface InMemoryCacheOptions { ttl?: number; cacheSize?: number; sync?: boolean; } export declare function InMemoryCache(params?: InMemoryCacheOptions): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => void;