UNPKG

apollo-client

Version:
15 lines (14 loc) 488 B
import { GraphQLError } from 'graphql'; export declare function isApolloError(err: Error): err is ApolloError; export declare class ApolloError extends Error { message: string; graphQLErrors: GraphQLError[]; networkError: Error | null; extraInfo: any; constructor({ graphQLErrors, networkError, errorMessage, extraInfo, }: { graphQLErrors?: GraphQLError[]; networkError?: Error | null; errorMessage?: string; extraInfo?: any; }); }