Skip to content

Commit

Permalink
Merge pull request #431 from lchauvin/main
Browse files Browse the repository at this point in the history
fix(build): Use import type instead of import
  • Loading branch information
PaulHax authored Sep 27, 2023
2 parents 8fcadfc + f632c65 commit 8774a03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/tools/BoundingRectangle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { worldToSVG } from '@/src/utils/vtk-helpers';
import { nonNullable } from '@/src/utils/index';
import vtkLPSView2DProxy from '@/src/vtk/LPSView2DProxy';
import vtkBoundingBox from '@kitware/vtk.js/Common/DataModel/BoundingBox';
import { Bounds, Vector3 } from '@kitware/vtk.js/types';
import type { Bounds, Vector3 } from '@kitware/vtk.js/types';
import { onVTKEvent } from '@/src/composables/onVTKEvent';
const props = defineProps<{
Expand Down
2 changes: 1 addition & 1 deletion src/components/tools/polygon/PolygonWidget2D.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import vtkWidgetFactory, {
vtkPolygonViewWidget as WidgetView,
} from '@/src/vtk/PolygonWidget';
import { Maybe } from '@/src/types';
import { Vector3 } from '@kitware/vtk.js/types';
import type { Vector3 } from '@kitware/vtk.js/types';
import { useViewStore } from '@/src/store/views';
import {
onViewProxyMounted,
Expand Down

0 comments on commit 8774a03

Please sign in to comment.