UNPKG

hypertune

Version:

[Hypertune](https://www.hypertune.com/) is the most flexible platform for feature flags, A/B testing, analytics and app configuration. Built with full end-to-end type-safety, Git-style version control and local, synchronous, in-memory flag evaluation. Opt

9 lines 247 B
export default class LRUCache<T> { private readonly maxSize; private cache; constructor(maxSize: number); get(key: string): T | null; set(key: string, value: T): void; purge(): void; } //# sourceMappingURL=LRUCache.d.ts.map