fhir-package-installer
Version:
A utility module for downloading, indexing, caching, and managing FHIR packages from the FHIR Package Registry and Simplifier
13 lines • 327 B
TypeScript
/**
* © Copyright Outburn Ltd. 2022-2025 All Rights Reserved
* Project name: FHIR-Package-Installer
*/
/**
* A basic interface for a resource file in a package
*/
export interface PackageResource {
id: string;
resourceType: string;
[key: string]: any | any[];
}
//# sourceMappingURL=PackageResource.d.ts.map