mirror of
https://github.com/rjNemo/federation
synced 2026-06-08 11:16:40 +00:00
9 lines
268 B
TypeScript
9 lines
268 B
TypeScript
import { ASTVisitor } from '../../language/visitor';
|
|
import { ValidationContext } from '../ValidationContext';
|
|
|
|
/**
|
|
* Variables passed to field arguments conform to type
|
|
*/
|
|
export function VariablesInAllowedPositionRule(
|
|
context: ValidationContext,
|
|
): ASTVisitor;
|