Make a strongly typed http GET request.
url for the request
fetch API args, defaults to { method: 'get' }
a typed async http reponse
Make a strongly typed http POST request.
url for the request
request's body
fetch API args, defaults to { method: 'post', body: JSON.stringify(body) }
a typed async http reponse
Make a strongly typed http PUT request.
url for the request
request's body
fetch API args, defaults to { method: 'put', body: JSON.stringify(body) }
a typed async http reponse
Utility function to make a fully typed http request with the fetch API.
This Fetch API interface represents a resource request.
a typed async http reponse
Generated using TypeDoc
Utility to make strongly typed HTTP requests. Uses the Fetch API.