From 71e7fffe995ad6dda8e1659ea3507fcef9991e7f Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Fri, 23 Jun 2017 09:07:54 -0500 Subject: [PATCH] Add missing boolean to union type. --- types/sequelize/v3/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/sequelize/v3/index.d.ts b/types/sequelize/v3/index.d.ts index 4e8084d3ee..3abf1b970f 100644 --- a/types/sequelize/v3/index.d.ts +++ b/types/sequelize/v3/index.d.ts @@ -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 | object | null; + [field: string]: string | number | WhereLogic | WhereOptions | col | and | or | WhereGeometryOptions | Array | object | boolean | null; }