All files / packages/tools/src/types index.ts

0% Statements 0/0
0% Branches 0/0
0% Functions 0/0
0% Lines 0/0

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
// AnnotationState
import type * as AnnotationStyle from './AnnotationStyle';
import type * as ToolSpecificAnnotationTypes from './ToolSpecificAnnotationTypes';
import type AnnotationGroupSelector from './AnnotationGroupSelector';
import type IAnnotationManager from './IAnnotationManager';
import type JumpToSliceOptions from './JumpToSliceOptions';
import type {
  AcceptInterpolationSelector,
  ImageInterpolationData,
  InterpolationViewportData,
} from './InterpolationTypes';
import type {
  Annotation,
  AnnotationState,
  Annotations,
  GroupSpecificAnnotations,
} from './AnnotationTypes';
import type { CanvasCoordinates } from '../utilities/math/ellipse/getCanvasEllipseCorners';
import type {
  ContourAnnotation,
  ContourAnnotationData,
  ContourWindingDirection,
} from './ContourAnnotation';
import type {
  ContourSegmentationAnnotation,
  ContourSegmentationAnnotationData,
} from './ContourSegmentationAnnotation';
 
// Rendering
import type AnnotationRenderContext from './AnnotationRenderContext';
 
// Geometry
import type PlanarBoundingBox from './PlanarBoundingBox';
import type {
  ToolProps,
  PublicToolProps,
  ToolConfiguration,
} from './ToolProps';
 
// Event data
import type * as EventTypes from './EventTypes';
import type IDistance from './IDistance';
import type IPoints from './IPoints';
import type ITouchPoints from './ITouchPoints';
 
// ToolBindings
import type InteractionTypes from './InteractionTypes';
import type ToolAction from './ToolAction';
import type {
  IToolBinding,
  SetToolBindingsType,
  ToolOptionsType,
} from './ISetToolModeOptions';
 
//
import type ISynchronizerEventHandler from './ISynchronizerEventHandler';
import type IToolClassReference from './IToolClassReference';
import type IToolGroup from '../store/ToolGroupManager/ToolGroup';
import type ToolHandle from './ToolHandle';
import type { AnnotationHandle, TextBoxHandle } from './ToolHandle';
import { ISculptToolShape } from './ISculptToolShape';
 
// Segmentation
import type * as LabelmapTypes from './LabelmapTypes';
import type {
  RepresentationConfig,
  RepresentationPublicInput,
  RepresentationPublicInputOptions,
  SegmentSpecificRepresentationConfig,
  Segmentation,
  SegmentationPublicInput,
  SegmentationRepresentationConfig,
  SegmentationRepresentationData,
  SegmentationState,
  ToolGroupSpecificContourRepresentation,
  ToolGroupSpecificLabelmapRepresentation,
  ToolGroupSpecificRepresentation,
  ToolGroupSpecificRepresentationState,
  ToolGroupSpecificRepresentations,
  ToolGroupSpecificSurfaceRepresentation,
} from './SegmentationStateTypes';
 
// Cursors
import type { SVGCursorDescriptor, SVGPoint } from './CursorTypes';
 
// Scroll
import type ScrollOptions from './ScrollOptions';
 
// Cine
import type BoundsIJK from './BoundsIJK';
import type * as CINETypes from './CINETypes';
import type SVGDrawingHelper from './SVGDrawingHelper';
 
// FloodFill
import type {
  FloodFillGetter,
  FloodFillOptions,
  FloodFillResult,
} from './FloodFillTypes';
 
// Contour
import type {
  ContourConfig,
  ContourRenderingConfig,
  ContourSegmentationData,
} from './ContourTypes';
 
// Statistics
import type { NamedStatistics, Statistics } from './CalculatorTypes';
 
// Labelmap
import {
  LabelmapToolOperationData,
  LabelmapToolOperationDataAny,
  LabelmapToolOperationDataStack,
  LabelmapToolOperationDataVolume,
} from './LabelmapToolOperationData';
 
// Splines
import type { BidirectionalData } from '../utilities/segmentation/createBidirectionalToolData';
import type { CardinalSplineProps } from './CardinalSplineProps';
import type { ClosestControlPoint } from './ClosestControlPoint';
import type { ClosestPoint } from './ClosestPoint';
import type { ClosestSplinePoint } from './ClosestSplinePoint';
import type { ControlPointInfo } from './ControlPointInfo';
import type { ISpline } from './ISpline';
import type { SplineCurveSegment } from './SplineCurveSegment';
import type { SplineLineSegment } from './SplineLineSegment';
import type { SplineProps } from './SplineProps';
 
// PolySeg
import type { PolySegConversionOptions } from './PolySeg';
 
export type {
  // AnnotationState
  AcceptInterpolationSelector,
  Annotation,
  AnnotationGroupSelector,
  AnnotationState,
  AnnotationStyle,
  Annotations,
  BidirectionalData,
  CanvasCoordinates,
  ContourAnnotation,
  ContourAnnotationData,
  ContourSegmentationAnnotation,
  ContourSegmentationAnnotationData,
  ContourWindingDirection,
  GroupSpecificAnnotations,
  IAnnotationManager,
  ImageInterpolationData,
  InterpolationViewportData,
  JumpToSliceOptions,
  ToolSpecificAnnotationTypes,
  // Rendering
  AnnotationRenderContext,
  // Geometry
  PlanarBoundingBox,
  PublicToolProps,
  ToolConfiguration,
  ToolProps,
  // Event data
  EventTypes,
  IDistance,
  IPoints,
  ITouchPoints,
  // ToolBindings
  IToolBinding,
  InteractionTypes,
  SetToolBindingsType,
  ToolAction,
  ToolOptionsType,
  //
  AnnotationHandle,
  ISculptToolShape,
  ISynchronizerEventHandler,
  IToolClassReference,
  IToolGroup,
  TextBoxHandle,
  ToolHandle,
  // Segmentation
  LabelmapTypes,
  RepresentationConfig,
  RepresentationPublicInput,
  RepresentationPublicInputOptions,
  SegmentSpecificRepresentationConfig,
  Segmentation,
  SegmentationPublicInput,
  SegmentationRepresentationConfig,
  SegmentationRepresentationData,
  SegmentationState,
  ToolGroupSpecificContourRepresentation,
  ToolGroupSpecificLabelmapRepresentation,
  ToolGroupSpecificRepresentation,
  ToolGroupSpecificRepresentationState,
  ToolGroupSpecificRepresentations,
  ToolGroupSpecificSurfaceRepresentation,
  // Cursors
  SVGCursorDescriptor,
  SVGPoint,
  // Scroll
  ScrollOptions,
  // Cine
  BoundsIJK,
  CINETypes,
  SVGDrawingHelper,
  // FloodFill
  FloodFillGetter,
  FloodFillOptions,
  FloodFillResult,
  // Contour
  ContourConfig,
  ContourRenderingConfig,
  ContourSegmentationData,
  // Statistics
  NamedStatistics,
  Statistics,
  // Labelmap
  LabelmapToolOperationData,
  LabelmapToolOperationDataAny,
  LabelmapToolOperationDataStack,
  LabelmapToolOperationDataVolume,
  // Splines
  CardinalSplineProps,
  ClosestControlPoint,
  ClosestPoint,
  ClosestSplinePoint,
  ControlPointInfo,
  ISpline,
  SplineCurveSegment,
  SplineLineSegment,
  SplineProps,
  // PolySeg
  PolySegConversionOptions,
};