Mirror: The spec-compliant minimum of client-side GraphQL.
1import type * as graphql from 'graphql';
2import type * as graphqlWeb from '../src/index';
3
4export function visitInput(input: typeof graphqlWeb.visit): typeof graphql.visit {
5 return input;
6}
7
8export function visitOutput(input: typeof graphql.visit): typeof graphqlWeb.visit {
9 return input;
10}