@herlinus/coloquent
Version:
Library for retrieving model objects from a JSON-API, with a fluent syntax inspired by Laravel Eloquent.
11 lines (10 loc) • 422 B
TypeScript
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 readonly query: Query | undefined;
protected readonly includeTree: any;
}