fhir-snapshot-generator
Version:
Generate snapshots for FHIR Profiles
12 lines • 486 B
TypeScript
/**
* © 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