UNPKG

fhir-snapshot-generator

Version:
12 lines 486 B
/** * © Copyright Outburn Ltd. 2022-2025 All Rights Reserved * Project name: fhir-snapshot-generator */ import { ElementDefinition } from '../../../types'; /** * Gets the node type based on the element definition properties. * @param element - the element definition to check * @returns - the node type as a string */ export declare const toNodeType: (element: ElementDefinition) => "array" | "poly" | "element" | "resliced" | "slice"; //# sourceMappingURL=toNodeType.d.ts.map