UNPKG

fhir-package-installer

Version:

A utility module for downloading, indexing, caching, and managing FHIR packages from the FHIR Package Registry and Simplifier

19 lines 721 B
/** * © Copyright Outburn Ltd. 2022-2025 All Rights Reserved * Project name: FHIR-Package-Installer */ /** * Options for the downloadPackage function. * @param destination The directory path where the package should be saved or extracted. * Defaults to the current working directory. * @param overwrite Whether to overwrite the existing package if it already exists. * Defaults to false. * @param extract Whether to extract the package after downloading. * If true, the tarball will be extracted into a subdirectory of `destination`. */ export interface DownloadPackageOptions { destination?: string; overwrite?: boolean; extract?: boolean; } //# sourceMappingURL=DownloadPackageOptions.d.ts.map