Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/mitm/interfaces/IMitmProxyToServerRequestOptions.ts
1030 views
1
import * as http from "http";
2
3
export default interface IMitmProxyToServerRequestOptions extends http.ClientRequestArgs {
4
headers: { [name: string]: string };
5
}
6
7