UNPKG

@synanetics/fhir-fml-convert

Version:

Converts StructureMaps written in FML to JSON ($convert operation)

8 lines 431 B
type FhirVersion = 'STU3' | 'R4' | 'R5'; type FhirPrimitiveTypes = 'base64Binary' | 'boolean' | 'code' | 'date' | 'dateTime' | 'decimal' | 'id' | 'instant' | 'integer' | 'markdown' | 'oid' | 'positiveInt' | 'string' | 'time' | 'unsignedInt' | 'uri' | 'uuid' | 'xhtml'; type FhirPrimitiveValue = { value: any; type: FhirPrimitiveTypes; }; export type { FhirVersion, FhirPrimitiveValue, }; //# sourceMappingURL=types.d.ts.map