UNPKG

fume-fhir-converter

Version:

FHIR-Utilized Mapping Engine - Community

17 lines 460 B
/** * © Copyright Outburn Ltd. 2022-2024 All Rights Reserved * Project name: FUME-COMMUNITY */ export interface CastToFhirOptions { name: string; path: string; baseType: string; kind?: string; jsonPrimitiveProfile?: string; fixed?: any; vsDictionary?: any[]; } export declare const castToFhir: (options: CastToFhirOptions, input: any) => Promise<{ [k: string]: any; } | undefined>; //# sourceMappingURL=castToFhir.d.ts.map