fume-fhir-converter
Version:
FHIR-Utilized Mapping Engine - Community
14 lines • 409 B
TypeScript
/**
* © Copyright Outburn Ltd. 2022-2024 All Rights Reserved
* Project name: FUME-COMMUNITY
*/
export interface ICache<T> {
get: (key: string) => T;
set: (key: string, value: T) => void;
remove: (key: string) => void;
keys: () => string[];
reset: () => void;
populate: (dict: Record<string, T>) => void;
getDict: () => Record<string, T>;
}
//# sourceMappingURL=Cache.d.ts.map