You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
649 B
19 lines
649 B
import { IncomingMessage, Agent, OutgoingHttpHeaders } from "http";
|
|
import { Readable } from "stream";
|
|
|
|
export interface Options {
|
|
'method'?: string;
|
|
'readTimeout'?: number;
|
|
'connectTimeout'?: number;
|
|
'timeout'?: number;
|
|
'agent'?: Agent;
|
|
'headers'?: OutgoingHttpHeaders;
|
|
'rejectUnauthorized'?: boolean;
|
|
'compression'?: boolean;
|
|
'beforeRequest'?(options: Options): void;
|
|
'data'?: string|Buffer|Readable|undefined;
|
|
}
|
|
|
|
export function request(url: string, options: Options): Promise<IncomingMessage>;
|
|
|
|
export function read(response: IncomingMessage, encoding: string): Promise<string|Buffer>;
|