http-response-object
Version:
A simple object to represent an http response
23 lines (19 loc) • 421 B
Flow
// @flow
// Generated using flowgen2
type IncomingHttpHeaders = Object;
declare class Response<TBody> {
+statusCode: number;
+headers: IncomingHttpHeaders;
+body: TBody;
+url: string;
constructor(
statusCode: number,
headers: IncomingHttpHeaders,
body: TBody,
url: string,
): void;
isError(): boolean;
getBody(encoding: string): string;
getBody(): TBody;
}
module.exports = Response;