Merge pull request #30049 from Antoine38660/master

Update Sequelize types
This commit is contained in:
Ron Buckton 2018-10-26 18:36:00 -07:00 committed by GitHub
commit 116a14da69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,7 @@
// Todd Bealmear <https://github.com/todd>
// Nick Schultz <https://github.com/nrschultz>
// Thomas Breleur <https://github.com/thomas-b>
// Antoine Boisadam <https://github.com/Antoine38660>
// 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;
}
/**