UNPKG

@herlinus/coloquent

Version:

Library for retrieving model objects from a JSON-API, with a fluent syntax inspired by Laravel Eloquent.

9 lines (8 loc) 306 B
import { HttpClientResponse } from "../HttpClientResponse"; import { AxiosResponse } from "axios"; export declare class AxiosHttpClientResponse implements HttpClientResponse { private axiosResponse; constructor(axiosResponse: AxiosResponse); getData(): any; getUnderlying(): any; }