7 lines
295 B
TypeScript
7 lines
295 B
TypeScript
import { HttpExecutor } from "builder-util-runtime";
|
|
import { ClientRequest } from "http";
|
|
export declare class NodeHttpExecutor extends HttpExecutor<ClientRequest> {
|
|
createRequest(options: any, callback: (response: any) => void): any;
|
|
}
|
|
export declare const httpExecutor: NodeHttpExecutor;
|