UNPKG

pegasys-orchestrate

Version:

The PegaSys Orchestrate library provides convenient access to the Codefi Orchestrate API from applications written in server-side JavaScript

12 lines (11 loc) 257 B
/** * @hidden * @class HttpResponseError */ export declare class HttpResponseError extends Error { headers: any; isHttpError: boolean; status: number; data?: any; constructor(msg: string, status: number, headers?: any, data?: any); }