diff options
Diffstat (limited to 'ext/node/polyfills/tty.ts')
-rw-r--r-- | ext/node/polyfills/tty.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/polyfills/tty.ts b/ext/node/polyfills/tty.ts index a622618f3..1b4b9d273 100644 --- a/ext/node/polyfills/tty.ts +++ b/ext/node/polyfills/tty.ts @@ -1,6 +1,6 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. -import { Socket } from "internal:deno_node/net.ts"; +import { Socket } from "ext:deno_node/net.ts"; // Returns true when the given numeric fd is associated with a TTY and false otherwise. function isatty(fd: number) { |