diff --git a/types/index.d.ts b/types/index.d.ts index b2a6c54565..891f312d89 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -13,6 +13,8 @@ import events = require('events'); import stream = require('stream'); import ResultTypes = require('./result'); +import { ConnectionOptions } from "tls"; + // # Generic type-level utilities // If T is object then make it a partial otherwise fallback to any @@ -1808,6 +1810,7 @@ declare namespace Knex { statement_timeout?: false | number; connectionTimeoutMillis?: number; keepAliveInitialDelayMillis?: number; + ssl?: boolean | ConnectionOptions; } type RedshiftConnectionConfig = PgConnectionConfig;