diff options
author | EnokMan <416828041@qq.com> | 2020-04-18 10:21:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-18 11:21:20 -0400 |
commit | 47617e60d551665ec509e013cfcae30987cb3b2b (patch) | |
tree | 5717061b7fd567b5fb8508f565993062f8014722 /cli/js/deno.ts | |
parent | 10469ec2798a7f02a6d9371207cc984502039bfa (diff) |
feat: startTLS (#4773)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index 89795119b..0322bac27 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -106,7 +106,7 @@ export { resources, close } from "./ops/resources.ts"; export { signal, signals, Signal, SignalStream } from "./signals.ts"; export { FileInfo, statSync, lstatSync, stat, lstat } from "./ops/fs/stat.ts"; export { symlinkSync, symlink } from "./ops/fs/symlink.ts"; -export { connectTLS, listenTLS } from "./tls.ts"; +export { connectTLS, listenTLS, startTLS } from "./tls.ts"; export { truncateSync, truncate } from "./ops/fs/truncate.ts"; export { isatty, setRaw } from "./ops/tty.ts"; export { umask } from "./ops/fs/umask.ts"; |