summaryrefslogtreecommitdiff
path: root/school/node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'school/node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts')
-rw-r--r--school/node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/school/node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts b/school/node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts
deleted file mode 100644
index 351449d..0000000
--- a/school/node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import { ASTVisitor } from '../../language/visitor';
-import { ValidationContext } from '../ValidationContext';
-
-/**
- * No unused variables
- *
- * A GraphQL operation is only valid if all variables defined by an operation
- * are used, either directly or within a spread fragment.
- */
-export function NoUnusedVariablesRule(context: ValidationContext): ASTVisitor;