diff options
Diffstat (limited to 'cli/js/40_jupyter.js')
-rw-r--r-- | cli/js/40_jupyter.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/40_jupyter.js b/cli/js/40_jupyter.js index 10dbccf4c..5a30a6b8e 100644 --- a/cli/js/40_jupyter.js +++ b/cli/js/40_jupyter.js @@ -9,8 +9,8 @@ function enableJupyter() { } = core.ensureFastOps(); globalThis.Deno.jupyter = { - async broadcast(msgType, content, { metadata = {} } = {}) { - await op_jupyter_broadcast(msgType, content, metadata); + async broadcast(msgType, content, { metadata = {}, buffers = [] } = {}) { + await op_jupyter_broadcast(msgType, content, metadata, buffers); }, }; } |