8 lines
326 B
TypeScript
8 lines
326 B
TypeScript
|
/// <reference types="node" />
|
||
|
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;
|