File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 2323 " package.json"
2424 ],
2525 "dependencies" : {
26- "purescript-aff" : " ^0.12 .0" ,
26+ "purescript-aff" : " ^0.13 .0" ,
2727 "purescript-arraybuffer-types" : " ^0.2.0" ,
2828 "purescript-dom" : " ^0.2.0" ,
2929 "purescript-foreign" : " ^0.7.0" ,
Original file line number Diff line number Diff line change @@ -231,12 +231,12 @@ type AjaxRequest =
231231 }
232232
233233foreign import _ajax
234- :: forall e a . Fn5 (String -> String -> ResponseHeader )
235- AjaxRequest
236- (XMLHttpRequest -> Canceler (ajax :: AJAX | e ))
237- (Error -> Eff (ajax :: AJAX | e ) Unit )
238- (AffjaxResponse Foreign -> Eff (ajax :: AJAX | e ) Unit )
239- (Eff (ajax :: AJAX | e ) (Canceler (ajax :: AJAX | e )))
234+ :: forall e . Fn5 (String -> String -> ResponseHeader )
235+ AjaxRequest
236+ (XMLHttpRequest -> Canceler (ajax :: AJAX | e ))
237+ (Error -> Eff (ajax :: AJAX | e ) Unit )
238+ (AffjaxResponse Foreign -> Eff (ajax :: AJAX | e ) Unit )
239+ (Eff (ajax :: AJAX | e ) (Canceler (ajax :: AJAX | e )))
240240
241241cancelAjax :: forall e . XMLHttpRequest -> Canceler (ajax :: AJAX | e )
242242cancelAjax xhr = Canceler \err -> makeAff (\eb cb -> runFn4 _cancelAjax xhr err eb cb)
You can’t perform that action at this time.
0 commit comments