blob: 6c4560e787d2a184f8397b620b062ce177d21cbb [file] [log] [blame]
import { ASTVisitor } from '../../language/visitor';
import { ValidationContext } from '../ValidationContext';
/**
* Known type names
*
* A GraphQL document is only valid if referenced types (specifically
* variable definitions and fragment conditions) are defined by the type schema.
*/
export function KnownTypeNamesRule(context: ValidationContext): ASTVisitor;