/**
 * © Copyright Outburn Ltd. 2022-2024 All Rights Reserved
 *   Project name: FUME-COMMUNITY
 */

import { castToFhir } from './castToFhir';
import { checkResourceId } from './checkResourceId';
import { finalize } from './finalize';
import { flashMerge } from './flashMerge';
import { wait } from './wait';

export type { CastToFhirOptions } from './castToFhir';
export type { flashMerge, FlashMergeOptions } from './flashMerge';

export default {
  castToFhir,
  checkResourceId,
  flashMerge,
  finalize,
  wait
};
