Skip to content

Commit

Permalink
Merge pull request #80 from marcjansen/typo-in-exported
Browse files Browse the repository at this point in the history
Rename export NegationOpertaor ➔ NegationOperator
  • Loading branch information
marcjansen authored Nov 19, 2018
2 parents 8f7caf2 + 9a94240 commit e788ccd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ export type CombinationOperator = '&&' | '||';
/**
* The Operator used for negation Filters.
*/
export type NegationOpertaor = '!';
export type NegationOperator = '!';

/**
* All operators.
*/
export type Operator = ComparisonOperator | CombinationOperator | NegationOpertaor;
export type Operator = ComparisonOperator | CombinationOperator | NegationOperator;

/**
* A base interface for Filter.
Expand Down Expand Up @@ -79,7 +79,7 @@ export interface CombinationFilter extends Filter {
* A NegationFilter negates a given Filter.
*/
export interface NegationFilter extends Filter {
0: NegationOpertaor;
0: NegationOperator;
1: Filter;
}

Expand Down

0 comments on commit e788ccd

Please sign in to comment.