summaryrefslogtreecommitdiff
path: root/cli/js/40_jupyter.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/40_jupyter.js')
-rw-r--r--cli/js/40_jupyter.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/40_jupyter.js b/cli/js/40_jupyter.js
index ae257f1c1..10dbccf4c 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) {
- await op_jupyter_broadcast(msgType, content);
+ async broadcast(msgType, content, { metadata = {} } = {}) {
+ await op_jupyter_broadcast(msgType, content, metadata);
},
};
}