From 99c1d9af689e5325f3cf535c4007b3aeb8325229 Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 10 Jan 2023 14:54:04 +0100 Subject: Update - This is an automated commit --- alarm/node_modules/graphql/error/locatedError.d.ts | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 alarm/node_modules/graphql/error/locatedError.d.ts (limited to 'alarm/node_modules/graphql/error/locatedError.d.ts') diff --git a/alarm/node_modules/graphql/error/locatedError.d.ts b/alarm/node_modules/graphql/error/locatedError.d.ts deleted file mode 100644 index 8693757..0000000 --- a/alarm/node_modules/graphql/error/locatedError.d.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Maybe } from '../jsutils/Maybe'; - -import { 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 function locatedError( - rawOriginalError: any, - nodes: ASTNode | ReadonlyArray | undefined, - path?: Maybe>, -): GraphQLError; -- cgit