UNPKG

typescript-cacheable

Version:

An in-memory caching (memoization) decorator for Typescript

5 lines (4 loc) 143 B
export interface CacheableKey { cacheKey(): string; } export declare function implementsCacheableKey(object: any): object is CacheableKey;