svelteplot 0.7.0-pr-275.5 → 0.7.0-pr-276.0
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/helpers/data.d.ts +1 -0
- package/dist/helpers/data.js +1 -1
- package/package.json +1 -1
package/dist/helpers/data.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
type Fetch = (input: RequestInfo, init?: RequestInit) => Promise<Response>;
|
|
2
|
+
export declare function loadCSV(fetch: Fetch, dataset: string): Promise<any[]>;
|
|
2
3
|
export declare function loadJSON(fetch: Fetch, dataset: string): Promise<any>;
|
|
3
4
|
/**
|
|
4
5
|
* helper function used in the SveltePlot docs to load example datasets
|
package/dist/helpers/data.js
CHANGED