HTTP Response
js
import kittylog from "kittylog";
fetch("https://jsonplaceholder.typicode.com/users")
.then(res => kittylog.httpResponse(res));
HTTP Response Parameters
PARAMETERS
ts
interface HttpResponseParameters {
response: Response;
}