From b24680fad4be139e597bfa51071b9eeb11b70a08 Mon Sep 17 00:00:00 2001 From: Rodrigo Antinarelli Date: Thu, 7 May 2020 10:57:40 -0300 Subject: [PATCH] export web api interface --- platform/core/src/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/platform/core/src/index.js b/platform/core/src/index.js index f12d7e2ec..d2f225bea 100644 --- a/platform/core/src/index.js +++ b/platform/core/src/index.js @@ -29,6 +29,8 @@ import { UIViewportDialogService, } from './services'; +import * as IWebApiDataSource from './DataSources/IWebApiDataSource'; + const OHIF = { MODULE_TYPES, // @@ -62,6 +64,7 @@ const OHIF = { UINotificationService, UIViewportDialogService, MeasurementService, + IWebApiDataSource, }; export { @@ -96,6 +99,7 @@ export { UINotificationService, UIViewportDialogService, MeasurementService, + IWebApiDataSource, }; export { OHIF };