diff options
Diffstat (limited to 'cli/js/lib.deno.ns.d.ts')
-rw-r--r-- | cli/js/lib.deno.ns.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts index 7a0477682..ffa560a73 100644 --- a/cli/js/lib.deno.ns.d.ts +++ b/cli/js/lib.deno.ns.d.ts @@ -1919,7 +1919,7 @@ declare namespace Deno { * * const listener = Deno.listen({ address: "/foo/bar.sock", transport: "unix" }) * - * Requires `allow-read` permission. */ + * Requires `allow-read` and `allow-write` permission. */ export function listen( options: UnixListenOptions & { transport: "unix" } ): Listener; @@ -1940,7 +1940,7 @@ declare namespace Deno { * * const listener = Deno.listen({ address: "/foo/bar.sock", transport: "unixpacket" }) * - * Requires `allow-read` permission. */ + * Requires `allow-read` and `allow-write` permission. */ export function listen( options: UnixListenOptions & { transport: "unixpacket" } ): DatagramConn; |