diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-08-19 14:36:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 14:36:01 +0200 |
commit | 5beec3f106b0890cc76150d0e3b3661c576d4c3b (patch) | |
tree | 9692e24bdb5a7e1d1c883b91961cdacff3e6708c /runtime/js | |
parent | 1848c7e361f1a3a33487b60ab6fcb61ed1f62273 (diff) |
feat(unstable): change Deno.serve() API (#15498)
- Merge "Deno.serve()" and "Deno.serveTls()" API
- Remove first argument and use "fetch" field options instead
- Update type declarations
- Add more documentation
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/90_deno_ns.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index b97c05556..dfca9d5bc 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -154,6 +154,5 @@ spawn: __bootstrap.spawn.spawn, spawnSync: __bootstrap.spawn.spawnSync, serve: __bootstrap.flash.serve, - serveTls: __bootstrap.flash.serveTls, }; })(this); |