@lunit/insight-viewer
Version:
Based on the cornerstone library, it provides several components for handling Dicom images
9 lines (8 loc) • 326 B
TypeScript
import type { EditMode, DrawablePointAnnotation } from '../../types';
export interface PointDrawerProps {
annotation: DrawablePointAnnotation;
isSelectedMode: boolean;
showAnnotationLabel: boolean;
selectedAnnotationLabel: string | number | null;
setAnnotationEditMode: (mode: EditMode) => void;
}