Quickstart
How to fast setup and view
Simple Cofigure
import { createConfig } from "shape-rq";
createConfig({
APIs: {
"MyAPI": "api.example.com"
},
debug: true,
lang: "en"
});GET Request
import { httpGet } from "shape-rq";
httpGet<UserType>("MyAPI", "users/")
.then(data => {
console.log(data);
});Last updated