@updog/data-editor 0.1.89 → 0.1.90
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/index.d.ts +5 -0
- package/index.js +2552 -2500
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2503,6 +2503,11 @@ type RowImportMeta = {
|
|
|
2503
2503
|
mapping: Record<string, string | undefined>;
|
|
2504
2504
|
/** The `context` prop, untouched. */
|
|
2505
2505
|
context: unknown;
|
|
2506
|
+
/**
|
|
2507
|
+
* Aborted when the import is cancelled and when the chunk's 30-second
|
|
2508
|
+
* timeout fires; hand it to your own fetch.
|
|
2509
|
+
*/
|
|
2510
|
+
signal: AbortSignal;
|
|
2506
2511
|
};
|
|
2507
2512
|
/**
|
|
2508
2513
|
* Chunk in, chunk out. The returned array is positional: element `i` answers
|