A string value that namespaces the action type.
The data of a response returned by a successful network request made by the apiMiddleware
.
A DataAction
which changes the state of the Redux Store based off of a successful network request.
A function returns a ErrorAction
, based off of failed API calls made by the apiMiddleware
.
A string value that namespaces the action type.
An error message returned by a failed network request made by the apiMiddleware
.
An ErrorAction
which changes the state of the Redux Store based off of a failed network request.
A function that return a RequestAction
, which interacts with the API asynchronously.
A string value that namespaces the action type.
a body object, is based off of AxiosRequestConfig
from axios
, which is for configuring network requests.
A RequestAction
which interacts with the API server via apiMiddleware
.
Generated using TypeDoc
A function returns a
DataAction
, based off of successful API calls made by theapiMiddleware
.