Sha256: 8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3
Contents?: true
Size: 443 Bytes
Versions: 26
Compression:
Stored size: 443 Bytes
Contents
import { GraphQLError } from '../error/GraphQLError'; import type { GraphQLInputType } from '../type/definition'; declare type OnErrorCB = ( path: ReadonlyArray<string | number>, invalidValue: unknown, error: GraphQLError, ) => void; /** * Coerces a JavaScript value given a GraphQL Input Type. */ export declare function coerceInputValue( inputValue: unknown, type: GraphQLInputType, onError?: OnErrorCB, ): unknown; export {};
Version data entries
26 entries across 26 versions & 1 rubygems