@jbrowse/plugin-legacy-jbrowse 2.2.0 → 2.2.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.
@@ -88,4 +88,4 @@ export interface LocalPathLocation {
88
88
  localPath: string;
89
89
  locationType: 'LocalPathLocation';
90
90
  }
91
- export declare type JBLocation = UriLocation | LocalPathLocation;
91
+ export type JBLocation = UriLocation | LocalPathLocation;
@@ -4,7 +4,7 @@ export declare function isSource(arg: any): arg is Source;
4
4
  /**
5
5
  * updates a with values from b, recursively
6
6
  */
7
- declare type Obj = Record<string, any>;
7
+ type Obj = Record<string, any>;
8
8
  export declare function deepUpdate(a: Obj, b: Obj): Obj;
9
9
  /**
10
10
  * replace variables in a template string with values
@@ -15,7 +15,7 @@ interface SearchResults {
15
15
  } | string)[];
16
16
  exact: [string, number, string, string, number, number][];
17
17
  }
18
- export declare type NamesIndexRecord = string | Array<string | number>;
18
+ export type NamesIndexRecord = string | Array<string | number>;
19
19
  export default class JBrowse1TextSearchAdapter extends BaseAdapter implements BaseTextSearchAdapter {
20
20
  httpMap: HttpMap;
21
21
  tracksNames?: string[];
@@ -88,4 +88,4 @@ export interface LocalPathLocation {
88
88
  localPath: string;
89
89
  locationType: 'LocalPathLocation';
90
90
  }
91
- export declare type JBLocation = UriLocation | LocalPathLocation;
91
+ export type JBLocation = UriLocation | LocalPathLocation;
@@ -4,7 +4,7 @@ export declare function isSource(arg: any): arg is Source;
4
4
  /**
5
5
  * updates a with values from b, recursively
6
6
  */
7
- declare type Obj = Record<string, any>;
7
+ type Obj = Record<string, any>;
8
8
  export declare function deepUpdate(a: Obj, b: Obj): Obj;
9
9
  /**
10
10
  * replace variables in a template string with values
@@ -15,7 +15,7 @@ interface SearchResults {
15
15
  } | string)[];
16
16
  exact: [string, number, string, string, number, number][];
17
17
  }
18
- export declare type NamesIndexRecord = string | Array<string | number>;
18
+ export type NamesIndexRecord = string | Array<string | number>;
19
19
  export default class JBrowse1TextSearchAdapter extends BaseAdapter implements BaseTextSearchAdapter {
20
20
  httpMap: HttpMap;
21
21
  tracksNames?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/plugin-legacy-jbrowse",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "JBrowse 2 plugin for connecting to and reading JBrowse 1 data",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -56,5 +56,5 @@
56
56
  "distModule": "esm/index.js",
57
57
  "srcModule": "src/index.ts",
58
58
  "module": "esm/index.js",
59
- "gitHead": "cf31db8d833117f8822510340664fb3f045975cb"
59
+ "gitHead": "896d175c5d9345049faea8e1155f243c912aac42"
60
60
  }