Skip to content

Commit

Permalink
api
Browse files Browse the repository at this point in the history
  • Loading branch information
sedghi committed Dec 2, 2024
1 parent 43c402e commit 3918bdd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 8 additions & 0 deletions common/reviews/api/tools.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,7 @@ export class BrushTool extends BaseTool {
viewUp: any;
strategySpecificConfiguration: any;
preview: unknown;
configuration: Record<string, any>;
override: {
voxelManager: Types_2.IVoxelManager<number>;
imageData: vtkImageData;
Expand All @@ -884,6 +885,7 @@ export class BrushTool extends BaseTool {
viewUp: any;
strategySpecificConfiguration: any;
preview: unknown;
configuration: Record<string, any>;
volumeId: string;
referencedVolumeId: any;
segmentsLocked: number[] | [];
Expand All @@ -899,6 +901,7 @@ export class BrushTool extends BaseTool {
viewUp: any;
strategySpecificConfiguration: any;
preview: unknown;
configuration: Record<string, any>;
imageId: string;
segmentsLocked: number[] | [];
override: {
Expand All @@ -917,6 +920,7 @@ export class BrushTool extends BaseTool {
viewUp: any;
strategySpecificConfiguration: any;
preview: unknown;
configuration: Record<string, any>;
imageId: string;
segmentsLocked: number[] | [];
volumeId?: undefined;
Expand All @@ -926,6 +930,8 @@ export class BrushTool extends BaseTool {
// (undocumented)
getStatistics(element: any, segmentIndices?: any): any;
// (undocumented)
interpolate(element: any, config: any): void;
// (undocumented)
invalidateBrushCursor(): void;
// (undocumented)
mouseMoveCallback: (evt: EventTypes_2.InteractionEventType) => void;
Expand Down Expand Up @@ -5441,6 +5447,8 @@ enum StrategyCallbacks {
// (undocumented)
INTERNAL_setValue = "setValue",
// (undocumented)
Interpolate = "interpolate",
// (undocumented)
OnInteractionEnd = "onInteractionEnd",
// (undocumented)
OnInteractionStart = "onInteractionStart",
Expand Down
1 change: 0 additions & 1 deletion packages/tools/src/store/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,4 @@ function resetCornerstoneToolsState(): void {

export type { ICornerstoneTools3dState };

window.state = state;
export { resetCornerstoneToolsState, state, state as default };

0 comments on commit 3918bdd

Please sign in to comment.