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 maxSize; private cache; constructor(maxSize: number); set(key: string, value: T): void; get(key: string): T | undefined; clear(): void; }