Skip to content

Commit

Permalink
Merge pull request DefinitelyTyped#3136 from RHAD1969/master
Browse files Browse the repository at this point in the history
Added a FilterQueryOpSymbol and an overload to EntityQuery.where
  • Loading branch information
vvakame committed Nov 14, 2014
2 parents 8504096 + 691b7f9 commit 2f48921
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions breeze/breeze.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,7 @@ declare module breeze {
where(property: string, operator: string, value: any): EntityQuery;
where(property: string, operator: FilterQueryOpSymbol, value: any): EntityQuery;
where(predicate: FilterQueryOpSymbol): EntityQuery;
where(property: string, filterop: FilterQueryOpSymbol, property2: string, filterop2: FilterQueryOpSymbol,value:any): EntityQuery;
withParameters(params: Object): EntityQuery;
}

Expand Down Expand Up @@ -618,6 +619,7 @@ declare module breeze {
LessThanOrEqual: FilterQueryOpSymbol;
NotEquals: FilterQueryOpSymbol;
StartsWith: FilterQueryOpSymbol;
Any: FilterQueryOpSymbol;
}
var FilterQueryOp: FilterQueryOp;

Expand Down

0 comments on commit 2f48921

Please sign in to comment.