@jbrowse/product-core 2.9.0 → 2.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/RootModel/BaseRootModel.d.ts +102 -56
- package/dist/Session/BaseSession.d.ts +11 -3
- package/dist/Session/BaseSession.js +5 -1
- package/dist/Session/MultipleViews.d.ts +301 -110
- package/dist/Session/MultipleViews.js +3 -0
- package/dist/Session/SessionTracks.d.ts +285 -117
- package/dist/Session/Tracks.d.ts +304 -98
- package/esm/RootModel/BaseRootModel.d.ts +102 -56
- package/esm/Session/BaseSession.d.ts +11 -3
- package/esm/Session/BaseSession.js +5 -1
- package/esm/Session/MultipleViews.d.ts +301 -110
- package/esm/Session/MultipleViews.js +3 -0
- package/esm/Session/SessionTracks.d.ts +285 -117
- package/esm/Session/Tracks.d.ts +304 -98
- package/package.json +3 -3
|
@@ -8,6 +8,9 @@ const DrawerWidgets_1 = require("./DrawerWidgets");
|
|
|
8
8
|
const BaseSession_1 = require("./BaseSession");
|
|
9
9
|
/**
|
|
10
10
|
* #stateModel MultipleViewsSessionMixin
|
|
11
|
+
* composed of
|
|
12
|
+
* - [BaseSessionModel](../basesessionmodel)
|
|
13
|
+
* - [DrawerWidgetSessionMixin](../drawerwidgetsessionmixin)
|
|
11
14
|
*/
|
|
12
15
|
function MultipleViewsSessionMixin(pluginManager) {
|
|
13
16
|
return mobx_state_tree_1.types
|