summaryrefslogtreecommitdiff
path: root/core/lib.deno_core.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'core/lib.deno_core.d.ts')
-rw-r--r--core/lib.deno_core.d.ts26
1 files changed, 26 insertions, 0 deletions
diff --git a/core/lib.deno_core.d.ts b/core/lib.deno_core.d.ts
index 2cec6be76..2c69782a6 100644
--- a/core/lib.deno_core.d.ts
+++ b/core/lib.deno_core.d.ts
@@ -41,5 +41,31 @@ declare namespace Deno {
/** Encode a string to its Uint8Array representation. */
function encode(input: string): Uint8Array;
+
+ /**
+ * Set a callback that will be called when the WebAssembly streaming APIs
+ * (`WebAssembly.compileStreaming` and `WebAssembly.instantiateStreaming`)
+ * are called in order to feed the source's bytes to the wasm compiler.
+ * The callback is called with the source argument passed to the streaming
+ * APIs and an rid to use with `Deno.core.wasmStreamingFeed`.
+ */
+ function setWasmStreamingCallback(
+ cb: (source: any, rid: number) => void,
+ ): void;
+
+ /**
+ * Affect the state of the WebAssembly streaming compiler, by either passing
+ * it bytes, aborting it, or indicating that all bytes were received.
+ * `rid` must be a resource ID that was passed to the callback set with
+ * `Deno.core.setWasmStreamingCallback`. Calling this function with `type`
+ * set to either "abort" or "finish" invalidates the rid.
+ */
+ function wasmStreamingFeed(
+ rid: number,
+ type: "bytes",
+ bytes: Uint8Array,
+ ): void;
+ function wasmStreamingFeed(rid: number, type: "abort", error: any): void;
+ function wasmStreamingFeed(rid: number, type: "finish"): void;
}
}