We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb75788 commit 19609deCopy full SHA for 19609de
src/Https.res
@@ -30,3 +30,15 @@ module Agent = {
30
}
31
include Events
32
33
+
34
+@module("https") external get: string => Http.ClientRequest.t = "get"
35
+@module("https")
36
+external getWithCallback: (string, Http.IncomingMessage.t => unit) => Http.ClientRequest.t = "get"
37
38
+external getWithOptions: (string, Http.requestOptions) => Http.ClientRequest.t = "get"
39
40
+external getWithOptionsCallback: (
41
+ string,
42
+ Http.requestOptions,
43
+ Http.IncomingMessage.t => unit,
44
+) => Http.ClientRequest.t = "get"
0 commit comments