diff options
author | Luca Casonato <hello@lcas.dev> | 2021-08-31 11:25:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-31 11:25:15 +0200 |
commit | fcd0992dba9cce0539cc60cd11867f50c0cf5efb (patch) | |
tree | e15cb497fce7fa678ab3fce92907dae562faa3b2 /ext/net/lib.rs | |
parent | ca75752e5a9499a0a997809f02b18c2ba1ecd58d (diff) |
fix: move unstable declarations to deno.unstable (#11876)
Diffstat (limited to 'ext/net/lib.rs')
-rw-r--r-- | ext/net/lib.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/net/lib.rs b/ext/net/lib.rs index 3764433e3..068a865eb 100644 --- a/ext/net/lib.rs +++ b/ext/net/lib.rs @@ -85,10 +85,6 @@ pub fn get_declaration() -> PathBuf { PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("lib.deno_net.d.ts") } -pub fn get_unstable_declaration() -> PathBuf { - PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("lib.deno_net.unstable.d.ts") -} - #[derive(Clone)] pub struct DefaultTlsOptions { pub root_cert_store: Option<RootCertStore>, |