Skip to content

Commit 2a672ec

Browse files
committed
fix signature
1 parent 6136baa commit 2a672ec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/types/src/rule.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ export type GraphQLESlintRuleListener<WithTypeInfo extends boolean> = {
3434
[K in keyof ASTKindToNode]?: (
3535
node: GraphQLESTreeNode<ASTKindToNode[K], WithTypeInfo>
3636
) => void;
37-
};
37+
} &
38+
Record<string, any>;
3839

3940
export type GraphQLValidTestCase<Options> = Omit<
4041
RuleTester.ValidTestCase,

0 commit comments

Comments
 (0)