mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 15:22:43 +08:00
7 lines
305 B
TypeScript
7 lines
305 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): ClientRequest;
|
|
}
|
|
export declare const httpExecutor: NodeHttpExecutor;
|