UNPKG

fhir

Version:

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

9 lines (8 loc) 210 B
import type { StructureDefinition } from "./structure-definition"; export interface Bundle { resourceType: string; total: number; entry?: { resource: StructureDefinition; }[]; }