Merge pull request #26614 from DerekTBrown/patch-1

Add `rejectOnError` to `define`
This commit is contained in:
Nathan Shively-Sanders
2018-06-18 13:44:11 -07:00
committed by GitHub

View File

@@ -5262,6 +5262,11 @@ declare namespace sequelize {
* Set to true or a string with the attribute name you want to use to enable.
*/
version?: boolean | string;
/**
* Throws an error when no records found
*/
rejectOnError?: boolean | Error;
}
/**