lightrail-client
Version:
A Javascript and Typescript client for Lightrail
11 lines (10 loc) • 339 B
TypeScript
import * as superagent from "superagent";
export declare class LightrailRequestError extends Error {
readonly isLightrailRequestError = true;
readonly status: number;
readonly messageCode: string;
readonly body: any;
readonly method: string;
readonly path: string;
constructor(response: superagent.Response);
}