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 parseInput(input: typeof graphqlWeb.parse): typeof graphql.parse {
5 return input;
6}
7
8export function parseOutput(input: typeof graphql.parse): typeof graphqlWeb.parse {
9 return input;
10}
11
12export function parseValueInput(input: typeof graphqlWeb.parseValue): typeof graphql.parseValue {
13 return input;
14}
15
16export function parseValueOutput(input: typeof graphql.parseValue): typeof graphqlWeb.parseValue {
17 return input;
18}