Sha256: 618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5
Contents?: true
Size: 547 Bytes
Versions: 26
Compression:
Stored size: 547 Bytes
Contents
import type { Maybe } from '../jsutils/Maybe'; import type { ASTNode } from '../language/ast'; import { GraphQLError } from './GraphQLError'; /** * Given an arbitrary value, presumably thrown while attempting to execute a * GraphQL operation, produce a new GraphQLError aware of the location in the * document responsible for the original Error. */ export declare function locatedError( rawOriginalError: unknown, nodes: ASTNode | ReadonlyArray<ASTNode> | undefined | null, path?: Maybe<ReadonlyArray<string | number>>, ): GraphQLError;
Version data entries
26 entries across 26 versions & 1 rubygems