fhir-snapshot-generator
Version:
Generate snapshots for FHIR Profiles
13 lines • 533 B
TypeScript
/**
* © Copyright Outburn Ltd. 2022-2025 All Rights Reserved
* Project name: fhir-snapshot-generator
*/
import { ElementDefinition } from '../../../types';
/**
* Check if the current working snapshot contains the target element id.
* @param elements working snapshot array
* @param targetElementId target element id
* @returns true if the element exists, false otherwise
*/
export declare const elementExists: (elements: ElementDefinition[], targetElementId: string) => boolean;
//# sourceMappingURL=elementExists.d.ts.map