Add missing boolean to union type.

This commit is contained in:
James D. Callahan III
2017-06-23 09:07:54 -05:00
parent 74a003f706
commit 71e7fffe99

View File

@@ -3056,7 +3056,7 @@ declare namespace sequelize {
* typesafety, but there is no way to pass the tests if we just remove it.
*/
interface WhereOptions {
[field: string]: string | number | WhereLogic | WhereOptions | col | and | or | WhereGeometryOptions | Array<string | number> | object | null;
[field: string]: string | number | WhereLogic | WhereOptions | col | and | or | WhereGeometryOptions | Array<string | number> | object | boolean | null;
}