mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
13 lines
359 B
TypeScript
13 lines
359 B
TypeScript
import { ASTVisitor } from '../../language/visitor';
|
|
import { ASTValidationContext } from '../ValidationContext';
|
|
|
|
/**
|
|
* Unique directive names per location
|
|
*
|
|
* A GraphQL document is only valid if all directives at a given location
|
|
* are uniquely named.
|
|
*/
|
|
export function UniqueDirectivesPerLocationRule(
|
|
context: ASTValidationContext,
|
|
): ASTVisitor;
|