blob: 98ff7a743808bdb1ad130b77e1eee2d74bd3dff1 [file] [log] [blame]
import { ASTVisitor } from '../../language/visitor';
import { ValidationContext } from '../ValidationContext';
/**
* Value literals of correct type
*
* A GraphQL document is only valid if all value literals are of the type
* expected at their position.
*/
export function ValuesOfCorrectTypeRule(context: ValidationContext): ASTVisitor;