serverless-spy
Version:
CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.
44 lines (37 loc) • 1.2 kB
TypeScript
/**
* Mnemonist LRUCache Typings
* ===========================
*/
import {IArrayLikeConstructor} from './utils/types';
export default class LRUCache<K, V> implements Iterable<[K, V]> {
// Members
capacity: number;
size: number;
// Constructor
constructor(capacity: number);
constructor(KeyArrayClass: IArrayLikeConstructor, ValueArrayClass: IArrayLikeConstructor, capacity: number);
// Methods
clear(): void;
set(key: K, value: V): this;
setpop(key: K, value: V): {evicted: boolean, key: K, value: V};
get(key: K): V | undefined;
peek(key: K): V | undefined;
has(key: K): boolean;
forEach(callback: (value: V, key: K, cache: this) => void, scope?: any): void;
keys(): IterableIterator<K>;
values(): IterableIterator<V>;
entries(): IterableIterator<[K, V]>;
[Symbol.iterator](): IterableIterator<[K, V]>;
inspect(): any;
// Statics
static from<I, J>(
iterable: Iterable<[I, J]> | {[key: string]: J},
KeyArrayClass: IArrayLikeConstructor,
ValueArrayClass: IArrayLikeConstructor,
capacity?: number
): LRUCache<I, J>;
static from<I, J>(
iterable: Iterable<[I, J]> | {[key: string]: J},
capacity?: number
): LRUCache<I, J>;
}