diff options
author | Valentin Anger <syrupthinker@gryphno.de> | 2020-05-24 15:43:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-24 09:43:40 -0400 |
commit | b7f0b073bb7585ea932a5783ff4ea88843a46b1b (patch) | |
tree | e81848f02fadb45f262a609d66380bcdd5ce5256 /cli/js/lib.deno.ns.d.ts | |
parent | f6e31603563bad38c663494ddec6a363989b5786 (diff) |
Add unstable checks for unix transport (#5818)
Also remove the unix example from the stable documentation
to stay in line with the `Deno.listen` one
Diffstat (limited to 'cli/js/lib.deno.ns.d.ts')
-rw-r--r-- | cli/js/lib.deno.ns.d.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts index 2415214a5..fd0c0e6d7 100644 --- a/cli/js/lib.deno.ns.d.ts +++ b/cli/js/lib.deno.ns.d.ts @@ -1612,10 +1612,9 @@ declare namespace Deno { * const conn2 = await Deno.connect({ hostname: "192.0.2.1", port: 80 }); * const conn3 = await Deno.connect({ hostname: "[2001:db8::1]", port: 80 }); * const conn4 = await Deno.connect({ hostname: "golang.org", port: 80, transport: "tcp" }); - * const conn5 = await Deno.connect({ path: "/foo/bar.sock", transport: "unix" }); * ``` * - * Requires `allow-net` permission for "tcp" and `allow-read` for unix. */ + * Requires `allow-net` permission for "tcp". */ export function connect(options: ConnectOptions): Promise<Conn>; export interface ConnectTlsOptions { |