UNPKG

fhir-package-installer

Version:

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

13 lines 452 B
/** * © Copyright Outburn Ltd. 2022-2025 All Rights Reserved * Project name: FHIR-Package-Installer */ import { FileInPackageIndex } from './FileInPackageIndex'; /** * The structure of a package's `.index.json` and `.fpi.index.json` files, according to version 2 @see https://hl7.org/fhir/packages.html */ export interface PackageIndex { 'index-version': number; files: FileInPackageIndex[]; } //# sourceMappingURL=PackageIndex.d.ts.map