fhir-package-installer
Version:
A utility module for downloading, indexing, caching, and managing FHIR packages from the FHIR Package Registry and Simplifier
17 lines • 431 B
TypeScript
/**
* © Copyright Outburn Ltd. 2022-2025 All Rights Reserved
* Project name: FHIR-Package-Installer
*/
import { ILogger } from './Logger';
/**
* The structure of the FPI constructor config object.
*/
export interface FpiConfig {
logger?: ILogger;
registryUrl?: string;
registryToken?: string;
cachePath?: string;
skipExamples?: boolean;
allowHttp?: boolean;
}
//# sourceMappingURL=FpiConfig.d.ts.map