Requests
import {
httpGet, httpPost, httpPut, httpPatch,
httpDel, head, options
} from "shape-rq"Request without body
httpGet<UserType>("MyAPI", "users/")
.then(data => {
console.log(data)
})
// OR
const res = await httpGet("MyAPI", "users/")
console.log(res)Requests with body
Last updated