Skip to content

Commit 75c7d4b

Browse files
authored
Merge pull request #3 from jctrotter/dev
Added demo plugin to demo config
2 parents e81073c + 4e0b2eb commit 75c7d4b

38 files changed

+2344
-190
lines changed

jbrowse/resources/external/minimalSession.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
}
3030
}
3131
},
32+
"plugins": [
33+
{
34+
"name": "MyProject",
35+
"url": "<CONTEXT_PATH>/jbrowse/plugins/demoPlugin/dist/jbrowse-plugin-my-project.umd.development.js"
36+
},],
37+
"location": "1:196,734,341..197,535,702",
3238
"tracks": [
3339
{
3440
"type": "VariantTrack",
@@ -67,5 +73,5 @@
6773
}
6874
}
6975
],
70-
"connections": []
76+
"connections": [],
7177
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/// <reference types="react" />
2+
export default function ReactComponent(): JSX.Element;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as ReactComponent } from './components/ReactComponent';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
declare function _default(jbrowse: any): any;
2+
export default _default;
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/// <reference types="react" />
2+
export default function ReactComponent2(): JSX.Element;
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
declare function _default(jbrowse: any): {
2+
configSchema: import("@jbrowse/core/configuration/configurationSchema").AnyConfigurationSchemaType;
3+
stateModel: any;
4+
ReactComponent: any;
5+
};
6+
export default _default;
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
export function helloWorldProcessedTranscript(feature: any): void;
2+
export const configSchema: import("@jbrowse/core/configuration/configurationSchema").AnyConfigurationSchemaType;
3+
export class AdapterClass extends BaseFeatureDataAdapter {
4+
constructor(args?: unknown);
5+
contructor(config: any): void;
6+
config: any;
7+
}
8+
import { BaseFeatureDataAdapter } from "@jbrowse/core/data_adapters/BaseAdapter";
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
declare function _default(pluginManager: any): import("@jbrowse/core/configuration/configurationSchema").AnyConfigurationSchemaType;
2+
export default _default;
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
declare function _default(pluginManager: any): {
2+
configSchema: any;
3+
stateModel: any;
4+
};
5+
export default _default;
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
declare function _default(jbrowse: any): any;
2+
export default _default;

0 commit comments

Comments
 (0)