UNPKG

simple-requests

Version:

A library for performing simple http(s) requests.

12 lines (11 loc) 289 B
import { IResponse } from './interfaces'; export default class RejectResponse implements IResponse<Error> { data: Error; error: boolean; headers: { date: string; 'content-type': string; 'content-length': string; }; constructor(error?: Error); }