11 lines
315 B
TypeScript
11 lines
315 B
TypeScript
import RectangleROIOptions from './Panels/RectangleROIOptions';
|
|
|
|
export default function getToolbarModule({ commandsManager, servicesManager }) {
|
|
return [
|
|
{
|
|
name: 'tmtv.RectangleROIThresholdOptions',
|
|
defaultComponent: () => RectangleROIOptions({ commandsManager, servicesManager }),
|
|
},
|
|
];
|
|
}
|