@jbrowse/product-core 3.5.0 → 3.5.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 +42 -70
- package/dist/Session/MultipleViews.d.ts +132 -220
- package/dist/Session/SessionTracks.d.ts +132 -220
- package/dist/Session/Tracks.d.ts +132 -220
- package/esm/RootModel/BaseRootModel.d.ts +42 -70
- package/esm/Session/MultipleViews.d.ts +132 -220
- package/esm/Session/SessionTracks.d.ts +132 -220
- package/esm/Session/Tracks.d.ts +132 -220
- package/package.json +3 -3
|
@@ -22,18 +22,18 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
22
22
|
refNameAliases: {
|
|
23
23
|
[x: string]: string;
|
|
24
24
|
} | undefined;
|
|
25
|
-
lowerCaseRefNameAliases: {
|
|
26
|
-
[x: string]: string;
|
|
27
|
-
} | undefined;
|
|
28
25
|
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
29
26
|
} & {
|
|
30
27
|
getConf(arg: string): any;
|
|
28
|
+
readonly lowerCaseRefNameAliases: {
|
|
29
|
+
[k: string]: string;
|
|
30
|
+
} | undefined;
|
|
31
31
|
} & {
|
|
32
32
|
readonly initialized: boolean;
|
|
33
33
|
readonly name: string;
|
|
34
34
|
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
35
35
|
readonly aliases: string[];
|
|
36
|
-
readonly displayName: string
|
|
36
|
+
readonly displayName: string;
|
|
37
37
|
hasName(name: string): boolean;
|
|
38
38
|
readonly allAliases: string[];
|
|
39
39
|
readonly allRefNames: string[] | undefined;
|
|
@@ -48,22 +48,17 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
48
48
|
getRefNameColor(refName: string): string | undefined;
|
|
49
49
|
isValidRefName(refName: string): boolean;
|
|
50
50
|
} & {
|
|
51
|
-
setLoaded({ regions, refNameAliases,
|
|
51
|
+
setLoaded({ regions, refNameAliases, cytobands, }: {
|
|
52
52
|
regions: import("@jbrowse/core/util").Region[];
|
|
53
53
|
refNameAliases: {
|
|
54
54
|
[x: string]: string;
|
|
55
55
|
};
|
|
56
|
-
lowerCaseRefNameAliases: {
|
|
57
|
-
[x: string]: string;
|
|
58
|
-
};
|
|
59
56
|
cytobands: import("@jbrowse/core/util").Feature[];
|
|
60
57
|
}): void;
|
|
61
58
|
setError(e: unknown): void;
|
|
62
59
|
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
63
60
|
setRefNameAliases(aliases: {
|
|
64
61
|
[x: string]: string;
|
|
65
|
-
}, lowerCaseAliases: {
|
|
66
|
-
[x: string]: string;
|
|
67
62
|
}): void;
|
|
68
63
|
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
69
64
|
setLoadingP(p?: Promise<void>): void;
|
|
@@ -83,6 +78,7 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
83
78
|
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
84
79
|
[x: string]: string;
|
|
85
80
|
}>;
|
|
81
|
+
afterCreate(): void;
|
|
86
82
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
87
83
|
}, {
|
|
88
84
|
readonly assemblyNameMap: Record<string, {
|
|
@@ -94,18 +90,18 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
94
90
|
refNameAliases: {
|
|
95
91
|
[x: string]: string;
|
|
96
92
|
} | undefined;
|
|
97
|
-
lowerCaseRefNameAliases: {
|
|
98
|
-
[x: string]: string;
|
|
99
|
-
} | undefined;
|
|
100
93
|
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
101
94
|
} & {
|
|
102
95
|
getConf(arg: string): any;
|
|
96
|
+
readonly lowerCaseRefNameAliases: {
|
|
97
|
+
[k: string]: string;
|
|
98
|
+
} | undefined;
|
|
103
99
|
} & {
|
|
104
100
|
readonly initialized: boolean;
|
|
105
101
|
readonly name: string;
|
|
106
102
|
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
107
103
|
readonly aliases: string[];
|
|
108
|
-
readonly displayName: string
|
|
104
|
+
readonly displayName: string;
|
|
109
105
|
hasName(name: string): boolean;
|
|
110
106
|
readonly allAliases: string[];
|
|
111
107
|
readonly allRefNames: string[] | undefined;
|
|
@@ -120,22 +116,17 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
120
116
|
getRefNameColor(refName: string): string | undefined;
|
|
121
117
|
isValidRefName(refName: string): boolean;
|
|
122
118
|
} & {
|
|
123
|
-
setLoaded({ regions, refNameAliases,
|
|
119
|
+
setLoaded({ regions, refNameAliases, cytobands, }: {
|
|
124
120
|
regions: import("@jbrowse/core/util").Region[];
|
|
125
121
|
refNameAliases: {
|
|
126
122
|
[x: string]: string;
|
|
127
123
|
};
|
|
128
|
-
lowerCaseRefNameAliases: {
|
|
129
|
-
[x: string]: string;
|
|
130
|
-
};
|
|
131
124
|
cytobands: import("@jbrowse/core/util").Feature[];
|
|
132
125
|
}): void;
|
|
133
126
|
setError(e: unknown): void;
|
|
134
127
|
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
135
128
|
setRefNameAliases(aliases: {
|
|
136
129
|
[x: string]: string;
|
|
137
|
-
}, lowerCaseAliases: {
|
|
138
|
-
[x: string]: string;
|
|
139
130
|
}): void;
|
|
140
131
|
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
141
132
|
setLoadingP(p?: Promise<void>): void;
|
|
@@ -155,6 +146,7 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
155
146
|
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
156
147
|
[x: string]: string;
|
|
157
148
|
}>;
|
|
149
|
+
afterCreate(): void;
|
|
158
150
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
159
151
|
configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<IAnyType>>;
|
|
160
152
|
}, {
|
|
@@ -164,18 +156,18 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
164
156
|
refNameAliases: {
|
|
165
157
|
[x: string]: string;
|
|
166
158
|
} | undefined;
|
|
167
|
-
lowerCaseRefNameAliases: {
|
|
168
|
-
[x: string]: string;
|
|
169
|
-
} | undefined;
|
|
170
159
|
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
171
160
|
} & {
|
|
172
161
|
getConf(arg: string): any;
|
|
162
|
+
readonly lowerCaseRefNameAliases: {
|
|
163
|
+
[k: string]: string;
|
|
164
|
+
} | undefined;
|
|
173
165
|
} & {
|
|
174
166
|
readonly initialized: boolean;
|
|
175
167
|
readonly name: string;
|
|
176
168
|
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
177
169
|
readonly aliases: string[];
|
|
178
|
-
readonly displayName: string
|
|
170
|
+
readonly displayName: string;
|
|
179
171
|
hasName(name: string): boolean;
|
|
180
172
|
readonly allAliases: string[];
|
|
181
173
|
readonly allRefNames: string[] | undefined;
|
|
@@ -190,22 +182,17 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
190
182
|
getRefNameColor(refName: string): string | undefined;
|
|
191
183
|
isValidRefName(refName: string): boolean;
|
|
192
184
|
} & {
|
|
193
|
-
setLoaded({ regions, refNameAliases,
|
|
185
|
+
setLoaded({ regions, refNameAliases, cytobands, }: {
|
|
194
186
|
regions: import("@jbrowse/core/util").Region[];
|
|
195
187
|
refNameAliases: {
|
|
196
188
|
[x: string]: string;
|
|
197
189
|
};
|
|
198
|
-
lowerCaseRefNameAliases: {
|
|
199
|
-
[x: string]: string;
|
|
200
|
-
};
|
|
201
190
|
cytobands: import("@jbrowse/core/util").Feature[];
|
|
202
191
|
}): void;
|
|
203
192
|
setError(e: unknown): void;
|
|
204
193
|
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
205
194
|
setRefNameAliases(aliases: {
|
|
206
195
|
[x: string]: string;
|
|
207
|
-
}, lowerCaseAliases: {
|
|
208
|
-
[x: string]: string;
|
|
209
196
|
}): void;
|
|
210
197
|
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
211
198
|
setLoadingP(p?: Promise<void>): void;
|
|
@@ -225,6 +212,7 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
225
212
|
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
226
213
|
[x: string]: string;
|
|
227
214
|
}>;
|
|
215
|
+
afterCreate(): void;
|
|
228
216
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>>;
|
|
229
217
|
} & {
|
|
230
218
|
get(asmName: string): ({
|
|
@@ -236,18 +224,18 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
236
224
|
refNameAliases: {
|
|
237
225
|
[x: string]: string;
|
|
238
226
|
} | undefined;
|
|
239
|
-
lowerCaseRefNameAliases: {
|
|
240
|
-
[x: string]: string;
|
|
241
|
-
} | undefined;
|
|
242
227
|
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
243
228
|
} & {
|
|
244
229
|
getConf(arg: string): any;
|
|
230
|
+
readonly lowerCaseRefNameAliases: {
|
|
231
|
+
[k: string]: string;
|
|
232
|
+
} | undefined;
|
|
245
233
|
} & {
|
|
246
234
|
readonly initialized: boolean;
|
|
247
235
|
readonly name: string;
|
|
248
236
|
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
249
237
|
readonly aliases: string[];
|
|
250
|
-
readonly displayName: string
|
|
238
|
+
readonly displayName: string;
|
|
251
239
|
hasName(name: string): boolean;
|
|
252
240
|
readonly allAliases: string[];
|
|
253
241
|
readonly allRefNames: string[] | undefined;
|
|
@@ -262,22 +250,17 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
262
250
|
getRefNameColor(refName: string): string | undefined;
|
|
263
251
|
isValidRefName(refName: string): boolean;
|
|
264
252
|
} & {
|
|
265
|
-
setLoaded({ regions, refNameAliases,
|
|
253
|
+
setLoaded({ regions, refNameAliases, cytobands, }: {
|
|
266
254
|
regions: import("@jbrowse/core/util").Region[];
|
|
267
255
|
refNameAliases: {
|
|
268
256
|
[x: string]: string;
|
|
269
257
|
};
|
|
270
|
-
lowerCaseRefNameAliases: {
|
|
271
|
-
[x: string]: string;
|
|
272
|
-
};
|
|
273
258
|
cytobands: import("@jbrowse/core/util").Feature[];
|
|
274
259
|
}): void;
|
|
275
260
|
setError(e: unknown): void;
|
|
276
261
|
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
277
262
|
setRefNameAliases(aliases: {
|
|
278
263
|
[x: string]: string;
|
|
279
|
-
}, lowerCaseAliases: {
|
|
280
|
-
[x: string]: string;
|
|
281
264
|
}): void;
|
|
282
265
|
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
283
266
|
setLoadingP(p?: Promise<void>): void;
|
|
@@ -297,6 +280,7 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
297
280
|
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
298
281
|
[x: string]: string;
|
|
299
282
|
}>;
|
|
283
|
+
afterCreate(): void;
|
|
300
284
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
301
285
|
configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<IAnyType>>;
|
|
302
286
|
}, {
|
|
@@ -306,18 +290,18 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
306
290
|
refNameAliases: {
|
|
307
291
|
[x: string]: string;
|
|
308
292
|
} | undefined;
|
|
309
|
-
lowerCaseRefNameAliases: {
|
|
310
|
-
[x: string]: string;
|
|
311
|
-
} | undefined;
|
|
312
293
|
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
313
294
|
} & {
|
|
314
295
|
getConf(arg: string): any;
|
|
296
|
+
readonly lowerCaseRefNameAliases: {
|
|
297
|
+
[k: string]: string;
|
|
298
|
+
} | undefined;
|
|
315
299
|
} & {
|
|
316
300
|
readonly initialized: boolean;
|
|
317
301
|
readonly name: string;
|
|
318
302
|
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
319
303
|
readonly aliases: string[];
|
|
320
|
-
readonly displayName: string
|
|
304
|
+
readonly displayName: string;
|
|
321
305
|
hasName(name: string): boolean;
|
|
322
306
|
readonly allAliases: string[];
|
|
323
307
|
readonly allRefNames: string[] | undefined;
|
|
@@ -332,22 +316,17 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
332
316
|
getRefNameColor(refName: string): string | undefined;
|
|
333
317
|
isValidRefName(refName: string): boolean;
|
|
334
318
|
} & {
|
|
335
|
-
setLoaded({ regions, refNameAliases,
|
|
319
|
+
setLoaded({ regions, refNameAliases, cytobands, }: {
|
|
336
320
|
regions: import("@jbrowse/core/util").Region[];
|
|
337
321
|
refNameAliases: {
|
|
338
322
|
[x: string]: string;
|
|
339
323
|
};
|
|
340
|
-
lowerCaseRefNameAliases: {
|
|
341
|
-
[x: string]: string;
|
|
342
|
-
};
|
|
343
324
|
cytobands: import("@jbrowse/core/util").Feature[];
|
|
344
325
|
}): void;
|
|
345
326
|
setError(e: unknown): void;
|
|
346
327
|
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
347
328
|
setRefNameAliases(aliases: {
|
|
348
329
|
[x: string]: string;
|
|
349
|
-
}, lowerCaseAliases: {
|
|
350
|
-
[x: string]: string;
|
|
351
330
|
}): void;
|
|
352
331
|
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
353
332
|
setLoadingP(p?: Promise<void>): void;
|
|
@@ -367,6 +346,7 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
367
346
|
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
368
347
|
[x: string]: string;
|
|
369
348
|
}>;
|
|
349
|
+
afterCreate(): void;
|
|
370
350
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
|
371
351
|
readonly assemblyNamesList: any[];
|
|
372
352
|
readonly assemblyList: import("@jbrowse/core/configuration").AnyConfigurationModel[];
|
|
@@ -381,18 +361,18 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
381
361
|
refNameAliases: {
|
|
382
362
|
[x: string]: string;
|
|
383
363
|
} | undefined;
|
|
384
|
-
lowerCaseRefNameAliases: {
|
|
385
|
-
[x: string]: string;
|
|
386
|
-
} | undefined;
|
|
387
364
|
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
388
365
|
} & {
|
|
389
366
|
getConf(arg: string): any;
|
|
367
|
+
readonly lowerCaseRefNameAliases: {
|
|
368
|
+
[k: string]: string;
|
|
369
|
+
} | undefined;
|
|
390
370
|
} & {
|
|
391
371
|
readonly initialized: boolean;
|
|
392
372
|
readonly name: string;
|
|
393
373
|
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
394
374
|
readonly aliases: string[];
|
|
395
|
-
readonly displayName: string
|
|
375
|
+
readonly displayName: string;
|
|
396
376
|
hasName(name: string): boolean;
|
|
397
377
|
readonly allAliases: string[];
|
|
398
378
|
readonly allRefNames: string[] | undefined;
|
|
@@ -407,22 +387,17 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
407
387
|
getRefNameColor(refName: string): string | undefined;
|
|
408
388
|
isValidRefName(refName: string): boolean;
|
|
409
389
|
} & {
|
|
410
|
-
setLoaded({ regions, refNameAliases,
|
|
390
|
+
setLoaded({ regions, refNameAliases, cytobands, }: {
|
|
411
391
|
regions: import("@jbrowse/core/util").Region[];
|
|
412
392
|
refNameAliases: {
|
|
413
393
|
[x: string]: string;
|
|
414
394
|
};
|
|
415
|
-
lowerCaseRefNameAliases: {
|
|
416
|
-
[x: string]: string;
|
|
417
|
-
};
|
|
418
395
|
cytobands: import("@jbrowse/core/util").Feature[];
|
|
419
396
|
}): void;
|
|
420
397
|
setError(e: unknown): void;
|
|
421
398
|
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
422
399
|
setRefNameAliases(aliases: {
|
|
423
400
|
[x: string]: string;
|
|
424
|
-
}, lowerCaseAliases: {
|
|
425
|
-
[x: string]: string;
|
|
426
401
|
}): void;
|
|
427
402
|
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
428
403
|
setLoadingP(p?: Promise<void>): void;
|
|
@@ -442,6 +417,7 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
442
417
|
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
443
418
|
[x: string]: string;
|
|
444
419
|
}>;
|
|
420
|
+
afterCreate(): void;
|
|
445
421
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
446
422
|
configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<IAnyType>>;
|
|
447
423
|
}, {
|
|
@@ -451,18 +427,18 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
451
427
|
refNameAliases: {
|
|
452
428
|
[x: string]: string;
|
|
453
429
|
} | undefined;
|
|
454
|
-
lowerCaseRefNameAliases: {
|
|
455
|
-
[x: string]: string;
|
|
456
|
-
} | undefined;
|
|
457
430
|
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
458
431
|
} & {
|
|
459
432
|
getConf(arg: string): any;
|
|
433
|
+
readonly lowerCaseRefNameAliases: {
|
|
434
|
+
[k: string]: string;
|
|
435
|
+
} | undefined;
|
|
460
436
|
} & {
|
|
461
437
|
readonly initialized: boolean;
|
|
462
438
|
readonly name: string;
|
|
463
439
|
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
464
440
|
readonly aliases: string[];
|
|
465
|
-
readonly displayName: string
|
|
441
|
+
readonly displayName: string;
|
|
466
442
|
hasName(name: string): boolean;
|
|
467
443
|
readonly allAliases: string[];
|
|
468
444
|
readonly allRefNames: string[] | undefined;
|
|
@@ -477,22 +453,17 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
477
453
|
getRefNameColor(refName: string): string | undefined;
|
|
478
454
|
isValidRefName(refName: string): boolean;
|
|
479
455
|
} & {
|
|
480
|
-
setLoaded({ regions, refNameAliases,
|
|
456
|
+
setLoaded({ regions, refNameAliases, cytobands, }: {
|
|
481
457
|
regions: import("@jbrowse/core/util").Region[];
|
|
482
458
|
refNameAliases: {
|
|
483
459
|
[x: string]: string;
|
|
484
460
|
};
|
|
485
|
-
lowerCaseRefNameAliases: {
|
|
486
|
-
[x: string]: string;
|
|
487
|
-
};
|
|
488
461
|
cytobands: import("@jbrowse/core/util").Feature[];
|
|
489
462
|
}): void;
|
|
490
463
|
setError(e: unknown): void;
|
|
491
464
|
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
492
465
|
setRefNameAliases(aliases: {
|
|
493
466
|
[x: string]: string;
|
|
494
|
-
}, lowerCaseAliases: {
|
|
495
|
-
[x: string]: string;
|
|
496
467
|
}): void;
|
|
497
468
|
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
498
469
|
setLoadingP(p?: Promise<void>): void;
|
|
@@ -512,6 +483,7 @@ export declare function BaseRootModelFactory({ pluginManager, jbrowseModelType,
|
|
|
512
483
|
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
513
484
|
[x: string]: string;
|
|
514
485
|
}>;
|
|
486
|
+
afterCreate(): void;
|
|
515
487
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined>;
|
|
516
488
|
getRefNameMapForAdapter(adapterConf: {
|
|
517
489
|
[x: string]: unknown;
|