graphql
Version:
A Query Language and Runtime which can target any service.
11 lines (10 loc) • 342 B
TypeScript
import type { ASTVisitor } from '../../language/visitor';
import type { SDLValidationContext } from '../ValidationContext';
/**
* Possible type extension
*
* A type extension is only valid if the type is defined and has the same kind.
*/
export declare function PossibleTypeExtensionsRule(
context: SDLValidationContext,
): ASTVisitor;