UNPKG

fhir-snapshot-generator

Version:
12 lines 494 B
/** * © Copyright Outburn Ltd. 2022-2025 All Rights Reserved * Project name: fhir-snapshot-generator */ import { ElementDefinition, FhirTreeNode } from '../../../types'; /** * Builds a tree from an array of ElementDefinition objects. * @param elements - the array of elements to convert to a tree * @returns - the root node of the tree, including all nested children */ export declare const toTree: (elements: ElementDefinition[]) => FhirTreeNode; //# sourceMappingURL=toTree.d.ts.map