summaryrefslogtreecommitdiff
path: root/cli/tsc.rs
diff options
context:
space:
mode:
authorLuca Casonato <hello@lcas.dev>2021-08-31 11:25:15 +0200
committerGitHub <noreply@github.com>2021-08-31 11:25:15 +0200
commitfcd0992dba9cce0539cc60cd11867f50c0cf5efb (patch)
treee15cb497fce7fa678ab3fce92907dae562faa3b2 /cli/tsc.rs
parentca75752e5a9499a0a997809f02b18c2ba1ecd58d (diff)
fix: move unstable declarations to deno.unstable (#11876)
Diffstat (limited to 'cli/tsc.rs')
-rw-r--r--cli/tsc.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/cli/tsc.rs b/cli/tsc.rs
index 57bbeeca3..144ff8021 100644
--- a/cli/tsc.rs
+++ b/cli/tsc.rs
@@ -45,10 +45,6 @@ pub static DENO_CRYPTO_LIB: &str = include_str!(env!("DENO_CRYPTO_LIB_PATH"));
pub static DENO_BROADCAST_CHANNEL_LIB: &str =
include_str!(env!("DENO_BROADCAST_CHANNEL_LIB_PATH"));
pub static DENO_NET_LIB: &str = include_str!(env!("DENO_NET_LIB_PATH"));
-pub static DENO_NET_UNSTABLE_LIB: &str =
- include_str!(env!("DENO_NET_UNSTABLE_LIB_PATH"));
-pub static DENO_HTTP_UNSTABLE_LIB: &str =
- include_str!(env!("DENO_HTTP_UNSTABLE_LIB_PATH"));
pub static SHARED_GLOBALS_LIB: &str =
include_str!("dts/lib.deno.shared_globals.d.ts");
pub static WINDOW_LIB: &str = include_str!("dts/lib.deno.window.d.ts");