docs: readme

This commit is contained in:
orion 2024-06-10 12:23:09 -05:00
parent 38675aac33
commit 5eca91d2dd
Signed by: orion
GPG Key ID: 6D4165AE4C928719

View File

@ -8,23 +8,36 @@ The main entry point is `Effect.Aff.HTTP.fetch`:
fetch <method> <url> <options>
```
* `<method>` is `Effect.Aff.HTTP.Request.Method`:
<ul>
<li>
<!-- language: purescript -->
data Method
= GET
| PUT
| POST
| DELETE
| PATCH
| HEAD
`<method>` is `Effect.Aff.HTTP.Request.Method`:
* `<url>` is `Data.URL.URL` (from [`url-immutable`](https://pursuit.purescript.org/packages/purescript-url-immutable/))
* `<options>` is a partial record of:
```purescript
data Method
= GET
| PUT
| POST
| DELETE
| PATCH
| HEAD
```
</li>
<!-- language: purescript -->
type OptionalFields =
( body :: Body
, headers :: Headers
, credentials :: Credentials
)
<li>
`<url>` is `Data.URL.URL` (from [`url-immutable`](https://pursuit.purescript.org/packages/purescript-url-immutable/))
</li>
<li>
`<options>` is a partial record of:
```purescript
type OptionalFields =
( body :: Body
, headers :: Headers
, credentials :: Credentials
)
```
</li>
</ul>