createFetch
Creates a fetch instance typed with an HTTP schema, mostly compatible with the native Fetch API. All requests and responses are typed by default with a schema, including methods, paths, status codes, arguments, and bodies.
fetch
The result of createFetch is a fetch instance typed with an HTTP schema, mostly compatible with the native Fetch API.
FetchRequest
A class representing a typed fetch request, which inherits from the native Request.
FetchResponse
A class representing a typed fetch response, which inherits from the native Response.
FetchResponseError
An error representing a response with a failure status code (4XX or 5XX).