Skip to content

Commit

Permalink
feat(sequelize.d.ts) add operatorsAliases constructor option
Browse files Browse the repository at this point in the history
  • Loading branch information
modulitos committed Nov 3, 2017
1 parent 660ddda commit b451122
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/sequelize.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 { }
Expand Down

0 comments on commit b451122

Please sign in to comment.