ohif-viewer/extensions/cornerstone-dicom-pmap/src/utils/initPMAPToolGroup.ts
2024-07-24 16:40:28 -04:00

7 lines
307 B
TypeScript

function createPMAPToolGroupAndAddTools(ToolGroupService, customizationService, toolGroupId) {
const { tools } = customizationService.get('cornerstone.overlayViewportTools') ?? {};
return ToolGroupService.createToolGroupAndAddTools(toolGroupId, tools);
}
export default createPMAPToolGroupAndAddTools;