14 lines
327 B
JavaScript
14 lines
327 B
JavaScript
/**
|
|
* Import namespace...
|
|
*/
|
|
|
|
import { OHIF, Cornerstone } from './namespace.js';
|
|
|
|
/**
|
|
* Import scripts that will populate the Cornerstone namespace as a side effect only import. This is effectively the public API...
|
|
*/
|
|
|
|
import './client/'; // which is actually: import './client/index.js';
|
|
|
|
export { OHIF, Cornerstone };
|