@graphql-eslint/eslint-plugin
Version:
GraphQL plugin for ESLint
6 lines (5 loc) • 385 B
text/typescript
import { ExecutableDefinitionNode } from 'graphql';
import { GraphQLESLintRule, GraphQLESLintRuleContext } from '../types.cjs';
import { GraphQLESTreeNode } from '../estree-converter/index.cjs';
export declare const checkNode: (context: GraphQLESLintRuleContext, node: GraphQLESTreeNode<ExecutableDefinitionNode>, ruleId: string) => void;
export declare const rule: GraphQLESLintRule;