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 23
23
" package.json"
24
24
],
25
25
"dependencies" : {
26
- "purescript-aff" : " ^0.12 .0" ,
26
+ "purescript-aff" : " ^0.13 .0" ,
27
27
"purescript-arraybuffer-types" : " ^0.2.0" ,
28
28
"purescript-dom" : " ^0.2.0" ,
29
29
"purescript-foreign" : " ^0.7.0" ,
Original file line number Diff line number Diff line change @@ -231,12 +231,12 @@ type AjaxRequest =
231
231
}
232
232
233
233
foreign 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 )))
240
240
241
241
cancelAjax :: forall e . XMLHttpRequest -> Canceler (ajax :: AJAX | e )
242
242
cancelAjax xhr = Canceler \err -> makeAff (\eb cb -> runFn4 _cancelAjax xhr err eb cb)
You can’t perform that action at this time.
0 commit comments