32 lines
1.3 KiB
TypeScript
32 lines
1.3 KiB
TypeScript
import { id } from './id';
|
|
import getPanelModule from './getPanelModule';
|
|
import getCommandsModule from './getCommandsModule';
|
|
import { showPercentage, setShowPercentage } from './PleuraBlinePercentage';
|
|
/**
|
|
* You can remove any of the following modules if you don't need them.
|
|
*/
|
|
export default {
|
|
/**
|
|
* Only required property. Should be a unique value across all extensions.
|
|
* You ID can be anything you want, but it should be unique.
|
|
*/
|
|
id,
|
|
/**
|
|
* PanelModule should provide a list of panels that will be available in OHIF
|
|
* for Modes to consume and render. Each panel is defined by a {name,
|
|
* iconName, iconLabel, label, component} object. Example of a panel module
|
|
* is the StudyBrowserPanel that is provided by the default extension in OHIF.
|
|
*/
|
|
getPanelModule,
|
|
/**
|
|
* CommandsModule should provide a list of commands that will be available in OHIF
|
|
* for Modes to consume and use in the viewports. Each command is defined by
|
|
* an object of { actions, definitions, defaultContext } where actions is an
|
|
* object of functions, definitions is an object of available commands, their
|
|
* options, and defaultContext is the default context for the command to run against.
|
|
*/
|
|
getCommandsModule,
|
|
};
|
|
|
|
export { showPercentage, setShowPercentage };
|