UNPKG

mes-engine

Version:

A powerful and flexible video processing framework for Node.js with support for multiple processing engines, adaptive streaming, and intelligent caching.

9 lines (8 loc) 200 B
export declare class LRU<T> { private cache; private maxSize; constructor(maxSize: number); get(key: string): T | undefined; set(key: string, value: T): void; clear(): void; }