UNPKG

@maicol07/coloquent

Version:

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

11 lines (10 loc) 416 B
import { HttpClientResponse } from "../httpclient/HttpClientResponse"; import { Query } from "../Query"; export declare abstract class Response { private _query; private axiosResponse; constructor(query: Query | undefined, axiosResponse: HttpClientResponse); getHttpClientResponse(): HttpClientResponse; protected get query(): Query | undefined; protected get includeTree(): any; }