import { AbstractAssignmentCache } from './abstract-assignment-cache'; import { TLRUCache } from './tlru-cache'; /** * Variation of LRU caching mechanism that will automatically evict items after * set time of milliseconds. * * It is used to limit the size of the cache. * * @param {number} maxSize - Maximum cache size * @param {number} ttl - Time in milliseconds after cache will expire. */ export declare class TLRUInMemoryAssignmentCache extends AbstractAssignmentCache { constructor(maxSize: number, ttl?: number); } //# sourceMappingURL=tlru-in-memory-assignment-cache.d.ts.map