jbrowse-plugin-msaview 2.0.0 → 2.0.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.
|
@@ -52,7 +52,9 @@ export default function stateModelFactory(): import("mobx-state-tree").IModelTyp
|
|
|
52
52
|
locationType: import("mobx-state-tree").ISimpleType<"UriLocation">;
|
|
53
53
|
uri: import("mobx-state-tree").ISimpleType<string>;
|
|
54
54
|
baseUri: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
55
|
-
internetAccountId: import("mobx-state-tree").IMaybe<import("mobx-state-tree"
|
|
55
|
+
internetAccountId: import("mobx-state-tree").IMaybe<import("mobx-state-tree" /**
|
|
56
|
+
* #action
|
|
57
|
+
*/).ISimpleType<string>>;
|
|
56
58
|
internetAccountPreAuthorization: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IModelType<{
|
|
57
59
|
internetAccountType: import("mobx-state-tree").ISimpleType<string>;
|
|
58
60
|
authInfo: import("mobx-state-tree").IType<any, any, any>;
|
|
@@ -68,7 +70,9 @@ export default function stateModelFactory(): import("mobx-state-tree").IModelTyp
|
|
|
68
70
|
locationType: "UriLocation";
|
|
69
71
|
uri: string;
|
|
70
72
|
internetAccountId: string | undefined;
|
|
71
|
-
internetAccountPreAuthorization: import("mobx-state-tree"
|
|
73
|
+
internetAccountPreAuthorization: import("mobx-state-tree" /**
|
|
74
|
+
* #getter
|
|
75
|
+
*/).ModelSnapshotType<{
|
|
72
76
|
internetAccountType: import("mobx-state-tree").ISimpleType<string>;
|
|
73
77
|
authInfo: import("mobx-state-tree").IType<any, any, any>;
|
|
74
78
|
}> | undefined;
|
|
@@ -211,9 +215,9 @@ export default function stateModelFactory(): import("mobx-state-tree").IModelTyp
|
|
|
211
215
|
msa: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
212
216
|
treeMetadata: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
213
217
|
}, {
|
|
214
|
-
setTree(tree?: string
|
|
215
|
-
setMSA(msa?: string
|
|
216
|
-
setTreeMetadata(treeMetadata?: string
|
|
218
|
+
setTree(tree?: string): void;
|
|
219
|
+
setMSA(msa?: string): void;
|
|
220
|
+
setTreeMetadata(treeMetadata?: string): void;
|
|
217
221
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
|
|
218
222
|
featureFilters: import("mobx-state-tree").IMapType<import("mobx-state-tree").ISimpleType<boolean>>;
|
|
219
223
|
} & {
|
|
@@ -257,7 +261,7 @@ export default function stateModelFactory(): import("mobx-state-tree").IModelTyp
|
|
|
257
261
|
} & {
|
|
258
262
|
status: {
|
|
259
263
|
msg: string;
|
|
260
|
-
url?: string
|
|
264
|
+
url?: string;
|
|
261
265
|
} | undefined;
|
|
262
266
|
highResScaleFactor: number;
|
|
263
267
|
loadingMSA: boolean;
|
|
@@ -277,7 +281,7 @@ export default function stateModelFactory(): import("mobx-state-tree").IModelTyp
|
|
|
277
281
|
left: number;
|
|
278
282
|
right: number;
|
|
279
283
|
} | undefined;
|
|
280
|
-
loadedInterProAnnotations: Record<string, import("react-msaview/dist/launchInterProScan").InterProScanResults
|
|
284
|
+
loadedInterProAnnotations: undefined | Record<string, import("react-msaview/dist/launchInterProScan").InterProScanResults>;
|
|
281
285
|
interProScanJobIds: {
|
|
282
286
|
jobId: string;
|
|
283
287
|
date: number;
|