Skip to content

Commit 5f53e6b

Browse files
committed
Fix missing export of RetryDelayCurve
1 parent caab433 commit 5f53e6b

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

docs/Network.HTTP.Affjax.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,14 @@ delete_ :: forall e. URL -> Affjax e Unit
144144

145145
Makes a `DELETE` request to the specified URL and ignores the response.
146146

147+
#### `RetryDelayCurve`
148+
149+
``` purescript
150+
type RetryDelayCurve = Int -> Int
151+
```
152+
153+
A sequence of retry delays, in milliseconds.
154+
147155
#### `RetryPolicy`
148156

149157
``` purescript

src/Network/HTTP/Affjax.purs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ module Network.HTTP.Affjax
1010
, post, post_, post', post_'
1111
, put, put_, put', put_'
1212
, delete, delete_
13+
, RetryDelayCurve()
1314
, RetryPolicy(..)
1415
, defaultRetryPolicy
1516
, retry

0 commit comments

Comments
 (0)