UNPKG

fume-fhir-converter

Version:

FHIR-Utilized Mapping Engine - Community

18 lines 558 B
/** * © Copyright Outburn Ltd. 2022-2024 All Rights Reserved * Project name: FUME-COMMUNITY */ import { ICache } from '../../types'; export declare class SimpleCache<T> implements ICache<T> { private readonly options; private cache; constructor(options?: Record<string, any>); get(key: string): any; set(key: string, value: any): void; remove(key: string): void; keys(): string[]; reset(): void; populate(dict: Record<string, T>): void; getDict(): Record<string, any>; } //# sourceMappingURL=simpleCache.d.ts.map