Initial commit: 11ty website with Fire/Frost branding
This commit is contained in:
14
node_modules/liquidjs/dist/cache/lru.d.ts
generated
vendored
Normal file
14
node_modules/liquidjs/dist/cache/lru.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Cache } from './cache';
|
||||
export declare class LRU<T> implements Cache<T> {
|
||||
limit: number;
|
||||
size: number;
|
||||
private cache;
|
||||
private head;
|
||||
private tail;
|
||||
constructor(limit: number, size?: number);
|
||||
write(key: string, value: T): void;
|
||||
read(key: string): T | undefined;
|
||||
remove(key: string): void;
|
||||
clear(): void;
|
||||
private ensureLimit;
|
||||
}
|
||||
Reference in New Issue
Block a user