summaryrefslogtreecommitdiff
path: root/runtime/lib.rs
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2021-05-22 18:08:24 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2021-05-23 15:16:42 +0200
commit8cf7f966f24d0fb996b41d92b04ad9647337a8f6 (patch)
tree306f60a892186dc14e06f65f7dd5c7b7dbfad147 /runtime/lib.rs
parent5f0d91497b03795250c55340c7e7c7de66d4607b (diff)
feat(extensions): add BroadcastChannel
Co-Authored-By: Ben Noordhuis <info@bnoordhuis.nl> Fixes: #10354
Diffstat (limited to 'runtime/lib.rs')
-rw-r--r--runtime/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lib.rs b/runtime/lib.rs
index d45a72727..3cc73bfff 100644
--- a/runtime/lib.rs
+++ b/runtime/lib.rs
@@ -1,5 +1,6 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+pub use deno_broadcast_channel;
pub use deno_console;
pub use deno_crypto;
pub use deno_fetch;