Skip to content
This repository has been archived by the owner on Jul 30, 2018. It is now read-only.

Commit

Permalink
Remove unnecessary change in order of properties
Browse files Browse the repository at this point in the history
  • Loading branch information
maier49 committed Dec 15, 2016
1 parent 4985db0 commit a4dc0ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/query/createFilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ interface FilterArray extends Array<FilterArrayEntry> {}

export interface SimpleFilter<T> extends Query<T> {
readonly filterType: FilterType;
readonly path?: ObjectPointer;
readonly value?: any;
readonly test: (item: T) => boolean;
readonly filterChain?: FilterChainMember<T>[];
readonly path?: ObjectPointer;
readonly value?: any;
}

export interface BooleanFilter<T> extends SimpleFilter<T> {
Expand Down

0 comments on commit a4dc0ce

Please sign in to comment.