Glossary
ClientRequest
type ClientRequest = {
uri: string,
method: MethodType,
body?: string | Object,
headers?: {
[key: string]: string,
},
}ClientResponse
type ClientResponse = {
body?: Object,
error?: HttpErrorType,
statusCode: number,
}Middleware
Client
ClientResult
HttpErrorType
SyncAction
Last updated