med-viewer-sdk 0.1.8 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/med-viewer-sdk.d.ts +8 -8
- package/dist/med-viewer-sdk.mjs +2 -0
- package/dist/med-viewer-sdk.umd.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +36 -11
package/dist/med-viewer-sdk.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { MedViewerEngine, type MedEngineOptions } from
|
|
2
|
-
import { type ScalebarOptions } from
|
|
3
|
-
import { AnnoAnnotator } from
|
|
4
|
-
import { MedToolbar, type ToolbarOptions } from
|
|
5
|
-
import { SelectionPlugin, type SelectionOptions } from
|
|
6
|
-
import { ColorAdjustPlugin, type ColorAdjustOptions } from
|
|
7
|
-
import { MagnificationPlugin, type MagnificationOptions } from
|
|
8
|
-
export { MedViewerEngine, type MedEngineOptions, AnnoAnnotator, MedToolbar, type ToolbarOptions, SelectionPlugin, type SelectionOptions, ColorAdjustPlugin, type ColorAdjustOptions, MagnificationPlugin, type MagnificationOptions, type ScalebarOptions };
|
|
1
|
+
import { MedViewerEngine, type MedEngineOptions } from "./core/Engine";
|
|
2
|
+
import { type ScalebarOptions, ScalebarType, ScalebarLocation } from "./core/Scalebar";
|
|
3
|
+
import { AnnoAnnotator } from "./core/AnnoAnnotator";
|
|
4
|
+
import { MedToolbar, type ToolbarOptions } from "./core/Toolbar";
|
|
5
|
+
import { SelectionPlugin, type SelectionOptions } from "./core/SelectionPlugin";
|
|
6
|
+
import { ColorAdjustPlugin, type ColorAdjustOptions } from "./core/ColorAdjustPlugin";
|
|
7
|
+
import { MagnificationPlugin, type MagnificationOptions } from "./core/Magnification";
|
|
8
|
+
export { MedViewerEngine, type MedEngineOptions, AnnoAnnotator, MedToolbar, type ToolbarOptions, SelectionPlugin, type SelectionOptions, ColorAdjustPlugin, type ColorAdjustOptions, MagnificationPlugin, type MagnificationOptions, type ScalebarOptions, ScalebarType, ScalebarLocation, };
|
package/dist/med-viewer-sdk.mjs
CHANGED
|
@@ -15320,5 +15320,7 @@ export {
|
|
|
15320
15320
|
MagnificationPlugin,
|
|
15321
15321
|
MedToolbar,
|
|
15322
15322
|
MedViewerEngine,
|
|
15323
|
+
ScalebarLocation,
|
|
15324
|
+
ScalebarType,
|
|
15323
15325
|
SelectionPlugin
|
|
15324
15326
|
};
|