UNPKG

@lunit/insight-viewer

Version:

Based on the cornerstone library, it provides several components for handling Dicom images

9 lines (8 loc) 283 B
import type { Point } from '../types'; interface GetMovedPointsProp { prevPoints: Point[]; editStartPoint: Point; currentPoint: Point; } export declare function getMovedPoints({ prevPoints, editStartPoint, currentPoint }: GetMovedPointsProp): Point[]; export {};