fume-fhir-converter
Version:
FHIR-Utilized Mapping Engine - Community
22 lines (19 loc) • 664 B
text/typescript
/**
* © Copyright Outburn Ltd. 2022-2024 All Rights Reserved
* Project name: FUME-COMMUNITY
*/
import { funcs } from '../jsonataFuncs';
import { replaceColonsWithBrackets } from '../stringFunctions';
import { getElementDefinition } from './getElementDefinition';
import { getSnapshot } from './getSnapshot';
import { removeComments } from './removeComments';
import { toJsonataString } from './toJsonataString';
export default {
toJsonataString,
getSnapshot,
getMandatoriesOfElement: funcs.getMandatoriesOfElement,
getMandatoriesOfStructure: funcs.getMandatoriesOfStructure,
getElementDefinition,
replaceColonsWithBrackets,
removeComments
};