diff --git a/types/sequelize/index.d.ts b/types/sequelize/index.d.ts index 5f1c8d1d1d..b6871ca3c4 100644 --- a/types/sequelize/index.d.ts +++ b/types/sequelize/index.d.ts @@ -14,6 +14,7 @@ // Todd Bealmear // Nick Schultz // Thomas Breleur +// Antoine Boisadam // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.8 @@ -5698,6 +5699,13 @@ declare namespace sequelize { * Pass object to limit set of aliased operators or false to disable completely. */ operatorsAliases?: boolean | OperatorsAliases; + + /** + * Set to `true` to enable connecting over SSL. + * + * Defaults to undefined + */ + ssl?: boolean; } /**