mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
13 lines
361 B
TypeScript
13 lines
361 B
TypeScript
|
import { ASTVisitor } from '../../language/visitor';
|
||
|
import { ASTValidationContext } from '../ValidationContext';
|
||
|
|
||
|
/**
|
||
|
* Executable definitions
|
||
|
*
|
||
|
* A GraphQL document is only valid for execution if all definitions are either
|
||
|
* operation or fragment definitions.
|
||
|
*/
|
||
|
export function ExecutableDefinitionsRule(
|
||
|
context: ASTValidationContext,
|
||
|
): ASTVisitor;
|