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 2745aec commit 5602327Copy full SHA for 5602327
src/Http2.re
@@ -117,17 +117,19 @@ module Http2Session = {
117
(
118
t,
119
[@bs.as "stream"] _,
120
- (
121
- t,
122
- Js.t({
123
- ..
124
- "status": string,
125
- "content-type": string,
126
- }),
127
- int,
128
- array(Js.t({..}))
129
- ) =>
130
- unit
+ [@bs.uncurry] (
+ (
+ t,
+ Js.t({
+ ..
+ "status": string,
+ "content-type": string,
+ }),
+ int,
+ array(Js.t({..}))
+ ) =>
131
+ unit
132
+ )
133
) =>
134
t =
135
"on";
0 commit comments