chore(exports): Exposes hydration functions from seg and rt extensions (#3585)

This commit is contained in:
rodrigobasilio2022 2023-08-09 12:39:17 -03:00 committed by GitHub
parent ca1287d99e
commit b55518e08e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,7 @@ import { id } from './id';
import React from 'react';
import { Types } from '@ohif/core';
import getSopClassHandlerModule from './getSopClassHandlerModule';
import hydrateRTDisplaySet from './utils/_hydrateRT';
const Component = React.lazy(() => {
return import(
@ -61,3 +62,4 @@ const extension: Types.Extensions.Extension = {
};
export default extension;
export { hydrateRTDisplaySet };

View File

@ -6,6 +6,7 @@ import { Types } from '@ohif/core';
import getSopClassHandlerModule from './getSopClassHandlerModule';
import PanelSegmentation from './panels/PanelSegmentation';
import getHangingProtocolModule from './getHangingProtocolModule';
import hydrateSEGDisplaySet from './utils/_hydrateSEG';
const Component = React.lazy(() => {
return import(
@ -90,3 +91,4 @@ const extension = {
};
export default extension;
export { hydrateSEGDisplaySet };