Skip to content

Commit 1584b90

Browse files
committed
feat(sequelize.d.ts) add operatorsAliases constructor option
1 parent ff21415 commit 1584b90

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

lib/sequelize.d.ts

+7
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,13 @@ export interface Options {
249249
* Defaults to false
250250
*/
251251
typeValidation?: boolean;
252+
253+
/**
254+
* 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.
255+
*
256+
* Defaults to true
257+
*/
258+
operatorsAliases?: boolean | object;
252259
}
253260

254261
export interface QueryOptionsTransactionRequired { }

0 commit comments

Comments
 (0)