@pi-oxide/extension-js 0.8.3 → 0.9.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.
- package/content-script.js +2 -2
- package/extension_js.d.ts +1 -1
- package/extension_js.js +63147 -63172
- package/index.d.ts +1 -1
- package/index.js +1742 -1268
- package/package.json +1 -1
- package/worker.js +656 -469
package/extension_js.d.ts
CHANGED
|
@@ -69,7 +69,7 @@ export type WasmCellStatus = "done" | "async_pending";
|
|
|
69
69
|
/**
|
|
70
70
|
* Structured error from running a cell.
|
|
71
71
|
*/
|
|
72
|
-
export type WasmCellError = { kind: "compile"; name: string | null; message: string; line: number | null } | { kind: "runtime"; name: string | null; message: string; line: number | null; action: string | null; code: string | null } | { kind: "fuel_exhausted" } | { kind: "internal"; message: string };
|
|
72
|
+
export type WasmCellError = { kind: "compile"; name: string | null; message: string; line: number | null } | { kind: "runtime"; name: string | null; message: string; line: number | null; action: string | null; code: string | null; stack: string | null } | { kind: "fuel_exhausted" } | { kind: "internal"; message: string };
|
|
73
73
|
|
|
74
74
|
export interface CollectOptions {
|
|
75
75
|
includeHidden?: boolean;
|