mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
11 lines
361 B
TypeScript
11 lines
361 B
TypeScript
|
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;
|