@qaflag/core
Version:
Base requirements for the QA Flag library
13 lines (11 loc) • 313 B
text/typescript
import { Cookie } from 'tough-cookie';
import { KeyValue } from './general.types';
import { HttpHeaders, HttpStatus } from './http.types';
export interface HttpResponseInterface {
duration: number;
headers: HttpHeaders;
trailers: KeyValue;
cookies: KeyValue<Cookie>;
status: HttpStatus;
data: any;
}