Skip to content

Commit

Permalink
fix(filter): added filter to comparisonFilters
Browse files Browse the repository at this point in the history
  • Loading branch information
lemon-mario committed Mar 5, 2019
1 parent 1863e3d commit c3538e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/interfaces/filter.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export interface ComparisonFilter<Value> {
readonly $lte?: Value;
readonly $ne?: Value;
readonly $nin?: Value[];
readonly $not?: ComparisonFilter<Value>;
readonly $search?: Value;
}
export declare type ItemFilter<I extends Item> = {
Expand Down
1 change: 1 addition & 0 deletions src/interfaces/Filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export interface ComparisonFilter<Value> {
readonly $lte?: Value;
readonly $ne?: Value;
readonly $nin?: Value[];
readonly $not?: ComparisonFilter<Value>;
readonly $search?: Value;
}

Expand Down

0 comments on commit c3538e9

Please sign in to comment.