UNPKG

fhir

Version:

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

8 lines (7 loc) 193 B
import type { ParsedProperty } from "./parsed-property"; export interface ParsedStructure { _url: string; _type: string; _kind: string; _properties?: ParsedProperty[]; }