fhir
Version:
Library that assists in handling FHIR resources. Supports serialization between JSON and XML, validation and FhirPath evaluation.
16 lines (15 loc) • 600 B
TypeScript
import type { Bundle } from "./model/bundle";
import type { StructureDefinition } from "./model/structure-definition";
import type { ParseConformance } from "./parseConformance";
export declare class SnapshotGenerator {
private readonly choiceRegexString;
private readonly parser;
private readonly bundle;
private processedUrls;
constructor(parser: ParseConformance, bundle: Bundle);
static createBundle(...structureDefinitions: StructureDefinition[]): Bundle;
private getStructureDefinition;
private merge;
private process;
generate(): void;
}