- move authenticated rendered media loading into the datasource\n- route DICOM video display sets through Cornerstone video viewports\n- add a 3.12 to 3.13 migration note for the removed DICOM-video viewport namespace
17 lines
300 B
TypeScript
17 lines
300 B
TypeScript
import getSopClassHandlerModule from './getSopClassHandlerModule';
|
|
import { id } from './id';
|
|
|
|
/**
|
|
*
|
|
*/
|
|
const dicomVideoExtension = {
|
|
/**
|
|
* Only required property. Should be a unique value across all extensions.
|
|
*/
|
|
id,
|
|
|
|
getSopClassHandlerModule,
|
|
};
|
|
|
|
export default dicomVideoExtension;
|