UNPKG

@graphql-eslint/eslint-plugin

Version:
15 lines (12 loc) 554 B
import { ExecutableDefinitionNode } from 'graphql'; import { GraphQLESTreeNode } from '../../estree-converter/types.cjs'; import { GraphQLESLintRuleContext, GraphQLESLintRule } from '../../types.cjs'; import 'eslint'; import 'estree'; import 'graphql-config'; import 'json-schema-to-ts'; import '../../siblings.cjs'; import '@graphql-tools/utils'; declare const checkNode: (context: GraphQLESLintRuleContext, node: GraphQLESTreeNode<ExecutableDefinitionNode>, ruleId: string) => void; declare const rule: GraphQLESLintRule; export { checkNode, rule };