diff --git a/typings/mysql/lib/Connection.d.ts b/typings/mysql/lib/Connection.d.ts index 5c84e90537..2e881bcf36 100644 --- a/typings/mysql/lib/Connection.d.ts +++ b/typings/mysql/lib/Connection.d.ts @@ -221,6 +221,11 @@ declare namespace Connection { * You can also connect to a MySQL server without properly providing the appropriate CA to trust. You should not do this. */ rejectUnauthorized?: boolean; + + /** + * Configure the minimum supported version of SSL, the default is TLSv1.2. + */ + minVersion?: string; } }