UNPKG

data-validator-js

Version:
16 lines (15 loc) 386 B
export declare class CachingUtility { private cache; constructor(); /** * Performs upsert function in the cache Dictionary * @param key {string} * @param value {any} */ Add(key: string, value: any): void; /** * Gets the Value entry for a corresponding key the cache Dictionary * @param key {string} */ Get(key: string): any; }