Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jnicklas committed Jan 15, 2021
1 parent 2a0173d commit 99b3417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/interactor/src/specification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export interface InteractorConstructor<E extends Element, F extends Filters<E>,
*
* @typeParam E The type of DOM Element that this interactor operates on. By specifying the element type, actions and filters defined for the interactor can be type checked against the actual element type.
*/
export interface InteractorSpecificationBuilder<E extends Element> extends InteractorBuilder<E, {}, {}> {
export interface InteractorSpecificationBuilder<E extends Element> extends InteractorBuilder<E, EmptyObject, EmptyObject> {
/**
* Calling the builder will create an interactor.
*
Expand Down

0 comments on commit 99b3417

Please sign in to comment.