UNPKG

343 BTypeScriptView Raw
1import { ASTVisitor } from '../../language/visitor';
2import { ValidationContext } from '../ValidationContext';
3
4/**
5 * Value literals of correct type
6 *
7 * A GraphQL document is only valid if all value literals are of the type
8 * expected at their position.
9 */
10export function ValuesOfCorrectTypeRule(context: ValidationContext): ASTVisitor;