From b451122268a436724ea937b8503bd8b62582907e Mon Sep 17 00:00:00 2001 From: Luke Swart Date: Fri, 27 Oct 2017 23:35:46 -0700 Subject: [PATCH] feat(sequelize.d.ts) add operatorsAliases constructor option --- lib/sequelize.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/sequelize.d.ts b/lib/sequelize.d.ts index bc8fbd0..6543143 100644 --- a/lib/sequelize.d.ts +++ b/lib/sequelize.d.ts @@ -249,6 +249,13 @@ export interface Options { * Defaults to false */ typeValidation?: boolean; + + /** + * String based operator alias, default value is true which will enable all operators alias. Pass object to limit set of aliased operators or false to disable completely. + * + * Defaults to true + */ + operatorsAliases?: boolean | object; } export interface QueryOptionsTransactionRequired { }