summaryrefslogtreecommitdiff
path: root/school/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'school/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts')
-rw-r--r--school/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/school/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts b/school/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts
deleted file mode 100644
index d1a0806..0000000
--- a/school/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import { ASTVisitor } from '../../language/visitor';
-import { ValidationContext } from '../ValidationContext';
-
-/**
- * No undefined variables
- *
- * A GraphQL operation is only valid if all variables encountered, both directly
- * and via fragment spreads, are defined by that operation.
- */
-export function NoUndefinedVariablesRule(
- context: ValidationContext,
-): ASTVisitor;