mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
13 lines
335 B
TypeScript
13 lines
335 B
TypeScript
|
import { ASTVisitor } from '../../language/visitor';
|
||
|
import { ASTValidationContext } from '../ValidationContext';
|
||
|
|
||
|
/**
|
||
|
* Unique argument names
|
||
|
*
|
||
|
* A GraphQL field or directive is only valid if all supplied arguments are
|
||
|
* uniquely named.
|
||
|
*/
|
||
|
export function UniqueArgumentNamesRule(
|
||
|
context: ASTValidationContext,
|
||
|
): ASTVisitor;
|