index overview
appy - A functional wrapper around Fetch API.
Please refer to request
module for Request
related documentation.
Added in v3.0.0
Table of contents
creators
del
Makes a request with the method
set to DELETE
.
Signature
export declare const del: Req<string>
Added in v3.0.0
get
Makes a request with the method
set to GET
.
Signature
export declare const get: Req<string>
Added in v3.0.0
patch
Makes a request with the method
set to PATCH
.
Signature
export declare const patch: Req<string>
Added in v3.0.0
post
Makes a request with the method
set to POST
.
Signature
export declare const post: Req<string>
Added in v3.0.0
put
Makes a request with the method
set to PUT
.
Signature
export declare const put: Req<string>
Added in v3.0.0