UNPKG

@colormate/core

Version:

A modular and efficient color management library for JavaScript and TypeScript applications.

7 lines (6 loc) 158 B
export declare class MemoizationCache<T> { private cache; get(key: string): T | undefined; set(key: string, value: T): void; clear(): void; }