Skip to content

Commit

Permalink
Add string tuple possibility for .. and !..
Browse files Browse the repository at this point in the history
  • Loading branch information
weswigham committed Apr 12, 2019
1 parent f2c704c commit 9d41067
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/sequelize/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3179,9 +3179,9 @@ declare namespace sequelize {
$notLike: string | WherePGStatement;
$notILike: string | WherePGStatement;
$between: [number, number] | [Date, Date];
"..": [number, number];
"..": [number, number] | [string, string];
$notBetween: [number, number];
"!..": [number, number];
"!..": [number, number] | [string, string];
$overlap: [number, number] | [string, string];
"&&": [number, number];
$contains: any;
Expand Down

0 comments on commit 9d41067

Please sign in to comment.