html-squircle
Version:
Utilities for generating superellipse squircles in the form of SVG strings, to be used in clip-path and background inline styles.
11 lines • 338 B
TypeScript
export declare class LRUCache<T> {
private readonly cache;
private capacity;
constructor(capacity: number);
get(key: string): T | undefined;
set(key: string, value: T): void;
has(key: string): boolean;
setCapacity(capacity: number | undefined): void;
private prune;
}
//# sourceMappingURL=LRUCache.d.ts.map