diff options
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index 8cce7bfce..c89313ddc 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -77,7 +77,15 @@ export { export { truncateSync, truncate } from "./truncate.ts"; export { FileInfo } from "./file_info.ts"; export { openPlugin } from "./plugins.ts"; -export { connect, dial, listen, Listener, Conn } from "./net.ts"; +export { + connect, + dial, + listen, + Listener, + Conn, + ShutdownMode, + shutdown +} from "./net.ts"; export { dialTLS, listenTLS } from "./tls.ts"; export { metrics, Metrics } from "./metrics.ts"; export { resources } from "./resources.ts"; |