UNPKG

html-reporter

Version:

Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.

9 lines (8 loc) 240 B
export declare class Cache<Key, Value> { private _getKeyHash; private _cache; constructor(hashFn: (key: Key) => string); has(key: Key): boolean; get(key: Key): Value | undefined; set(key: Key, value: Value): this; }