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 { }