github-pages-deploy-action/node_modules/graphql/utilities/coerceInputValue.d.ts

18 lines
401 B
TypeScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
import { GraphQLInputType } from '../type/definition';
import { GraphQLError } from '../error/GraphQLError';
type OnErrorCB = (
path: ReadonlyArray<string | number>,
invalidValue: any,
error: GraphQLError,
) => void;
/**
* Coerces a JavaScript value given a GraphQL Input Type.
*/
export function coerceInputValue(
inputValue: any,
type: GraphQLInputType,
onError?: OnErrorCB,
): any;