UNPKG

fhir-snapshot-generator

Version:
12 lines 456 B
/** * © Copyright Outburn Ltd. 2022-2025 All Rights Reserved * Project name: fhir-snapshot-generator */ import { FhirTreeNode, ElementDefinition } from '../../../types'; /** * Flattens a FhirTreeNode into a flat array of ElementDefinition objects. * @param tree - the tree to flatten * @returns - the flattened array of elements */ export declare const fromTree: (tree: FhirTreeNode) => ElementDefinition[]; //# sourceMappingURL=fromTree.d.ts.map