6 lines
145 B
TypeScript
6 lines
145 B
TypeScript
import { addTool, BrushTool } from '@cornerstonejs/tools';
|
|
|
|
export default function init({ configuration = {} }): void {
|
|
addTool(BrushTool);
|
|
}
|