mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-22 18:26:01 +08:00
16 lines
444 B
TypeScript
16 lines
444 B
TypeScript
import { IncomingHttpHeaders } from 'http';
|
|
/**
|
|
* A response from a web request
|
|
*/
|
|
declare class Response<TBody> {
|
|
readonly statusCode: number;
|
|
readonly headers: IncomingHttpHeaders;
|
|
readonly body: TBody;
|
|
readonly url: string;
|
|
constructor(statusCode: number, headers: IncomingHttpHeaders, body: TBody, url: string);
|
|
isError(): boolean;
|
|
getBody(encoding: string): string;
|
|
getBody(): TBody;
|
|
}
|
|
export = Response;
|