@weng-lab/genomebrowser 1.0.0 → 1.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.
@@ -12,7 +12,7 @@ export interface AllRequests {
12
12
  /**
13
13
  * Build BigWig/BigBed requests for given tracks
14
14
  */
15
- export declare function buildBigRequests(tracks: Track[], domain: Domain): BigRequest[];
15
+ export declare function buildBigRequests(tracks: Track[], domain: Domain, preRenderedWidth: number): BigRequest[];
16
16
  /**
17
17
  * Build BulkBed requests for given tracks
18
18
  */
@@ -37,4 +37,4 @@ export declare function buildLDRequest(tracks: Track[], domain: Domain): LDReque
37
37
  /**
38
38
  * Build all requests for all track types in one coordinated call
39
39
  */
40
- export declare function buildAllRequests(tracks: Track[], expandedDomain: Domain, currentDomain: Domain): AllRequests;
40
+ export declare function buildAllRequests(tracks: Track[], expandedDomain: Domain, currentDomain: Domain, preRenderedWidth: number): AllRequests;
@@ -0,0 +1,3 @@
1
+ export default function GQLWrapper({ children }: {
2
+ children: React.ReactNode;
3
+ }): import("react/jsx-runtime").JSX.Element;