Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/interfaces/IHttp2ConnectSettings.ts
1028 views
1
import * as http2 from 'http2';
2
3
export default interface IHttp2ConnectSettings {
4
settings: http2.Settings;
5
localWindowSize: number;
6
}
7
8