/// import type * as HTTP from '../../types/http'; import type HttpError from '../HttpError'; import type GlobalRequestConfig from '../GlobalRequestConfig'; /** * 提示错误消息. * * @param error * @param options * @param globalConfig */ declare function showError(error: Error | HttpError, options: HTTP.RequestConfig | undefined, globalConfig: GlobalRequestConfig): void; export default showError;