UNPKG

beach-day

Version:

API integration testing as fun as a day on the beach

16 lines (15 loc) 307 B
/// <reference types="node" /> import { Url } from 'url'; export interface IRequestResponse { statusCode: number; request: IRequest; body?: any; headers?: any; } export interface IRequest { uri: Url; method: string; headers: any; body?: any; form?: any; }