UNPKG

fhir

Version:

Library that assists in handling FHIR resources. Supports serialization between JSON and XML, validation and FhirPath evaluation.

14 lines (13 loc) 380 B
import type { ParseConformance } from './parseConformance'; export declare class ConvertToJs { private parser; constructor(parser?: ParseConformance); convert(xml: any): { resourceType: any; }; convertToJSON(xml: any): string; private maxLengthOfDs; private resourceToJS; private findReferenceType; private propertyToJS; }