diff options
author | João Souto <joao.jpgs@hotmail.com> | 2020-03-23 22:02:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-23 18:02:51 -0400 |
commit | 70a50344315a4c3361fc321e78e076fb09a502b3 (patch) | |
tree | 1079d325ec898afb7829ac1888ed395ed2ac35d2 /cli/js/deno.ts | |
parent | b924e5ab7e69eab4d3b6d9a863a8fc2974f33b5d (diff) |
feat: Support Unix Domain Sockets (#4176)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index 6a493faf8..f42e39754 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -70,12 +70,9 @@ export { export { metrics, Metrics } from "./ops/runtime.ts"; export { mkdirSync, mkdir, MkdirOptions } from "./ops/fs/mkdir.ts"; export { - Addr, connect, listen, - recvfrom, - UDPConn, - UDPAddr, + DatagramConn, Listener, Conn, ShutdownMode, |