UNPKG

fume-fhir-converter

Version:

FHIR-Utilized Mapping Engine - Community

12 lines 297 B
/** * © Copyright Outburn Ltd. 2022-2024 All Rights Reserved * Project name: FUME-COMMUNITY */ /** * A basic interface for a resource file in a package */ export interface FhirResource { resourceType: string; [key: string]: any | any[]; } //# sourceMappingURL=FhirResource.d.ts.map