Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/interfaces/IHttpSocketAgent.ts
1028 views
1
import IHttpSocketConnectOptions from './IHttpSocketConnectOptions';
2
import IHttpSocketWrapper from './IHttpSocketWrapper';
3
4
export default interface IHttpSocketAgent {
5
createSocketConnection(options: IHttpSocketConnectOptions): Promise<IHttpSocketWrapper>;
6
}
7
8