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