File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 707707
708708 pureResolve :: forall a b. b -> Promise a b
709709
710- then' :: forall a b c d . (b -> Promise c d ) -> Promise a b -> Promise c d
710+ then' :: forall a b c. (b -> Promise a c ) -> Promise a b -> Promise a c
711711
712712 then'' :: forall a b c d. (b -> Promise c d) -> (a -> Promise c d) -> Promise a b -> Promise c d
713713
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ foreign import thenFn'
5858 \ } "
5959 :: forall a b c d . Fn2 (b -> Promise c d ) (Promise a b ) (Promise c d )
6060
61- then' :: forall a b c d . (b -> Promise c d ) -> Promise a b -> Promise c d
61+ then' :: forall a b c . (b -> Promise a c ) -> Promise a b -> Promise a c
6262then' = runFn2 thenFn'
6363
6464foreign import thenFn''
You can’t perform that action at this time.
0 commit comments