From 6e4620afa20a24c4d8322ee22c6456a52b2d6f20 Mon Sep 17 00:00:00 2001 From: Cale Teeter Date: Wed, 26 Jul 2023 08:47:47 -0400 Subject: [PATCH] Update to fix typings update for TLS support --- index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.d.ts b/index.d.ts index 404a20c..6d5280c 100644 --- a/index.d.ts +++ b/index.d.ts @@ -204,6 +204,10 @@ export declare interface ConnectionParameters { * Connect with Unix Domain Sockets rather than TCP */ unixSocket?: string; + /** + * Should this connection use TLS + */ + useTLS?: boolean; } /**