Skip to content

Commit

Permalink
fix: add extra CSS selector attribute to EvaluatorType
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Dec 20, 2018
1 parent f78c156 commit 35c1656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export type EvaluatorType = {|
+isElement: (maybeElement: mixed) => boolean,
+nextUntil: (element: ElementType, selector: string, filter?: string) => $ReadOnlyArray<ElementType>,
+parseDocument: (subject: string) => ElementType,
+previous: (element: ElementType) => ElementType,
+previous: (element: ElementType, selector?: string) => ElementType,
+querySelectorAll: (element: ElementType, selector: string) => $ReadOnlyArray<ElementType>,
+remove: (element: ElementType) => void
|};
Expand Down

0 comments on commit 35c1656

Please sign in to comment.