import { APIError, HttpError } from './types/common-types'; /** Used to easily mock a query returning an error when using the `LocalGraphQLClient`. * This is a class so that the local mock client can use `instanceof` to detect it. */ declare class LocalGraphQLError implements APIError { fetchError?: Error; httpError?: HttpError; graphQLErrors?: TGraphQLError[]; constructor(error: APIError); } export default LocalGraphQLError;