Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
sedghi committed Oct 4, 2024
1 parent d5c4b15 commit 3592551
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions common/reviews/api/tools.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1727,7 +1727,7 @@ const createStackImageSynchronizer: typeof createImageSliceSynchronizer;
function createSynchronizer(synchronizerId: string, eventName: string, eventHandler: ISynchronizerEventHandler, options?: SynchronizerOptions): Synchronizer;

// @public (undocumented)
function createToolGroup(toolGroupId: string): ToolGroup;
function createToolGroup(toolGroupId: string): ToolGroup | undefined;

// @public (undocumented)
function createVOISynchronizer(synchronizerName: string, options: VOISynchronizerOptions): Synchronizer;
Expand Down Expand Up @@ -5234,10 +5234,6 @@ export class StackScrollTool extends BaseTool {
// (undocumented)
mouseWheelCallback(evt: EventTypes_2.MouseWheelEventType): void;
// (undocumented)
_rotate(evt: any): void;
// (undocumented)
_rotateDrag(evt: EventTypes_2.InteractionEventType): void;
// (undocumented)
_scroll(evt: EventTypes_2.MouseWheelEventType): void;
// (undocumented)
_scrollDrag(evt: EventTypes_2.InteractionEventType): void;
Expand Down Expand Up @@ -6268,6 +6264,17 @@ declare namespace voi {
}
}

// @public (undocumented)
export class VolumeRotateMouseWheelTool extends BaseTool {
constructor(toolProps?: PublicToolProps, defaultToolProps?: ToolProps);
// (undocumented)
_configuration: any;
// (undocumented)
mouseWheelCallback(evt: MouseWheelEventType): void;
// (undocumented)
static toolName: any;
}

// @public (undocumented)
type VolumeScrollOutOfBoundsEventDetail = {
volumeId: string;
Expand Down

0 comments on commit 3592551

Please sign in to comment.