UNPKG

@herlinus/coloquent

Version:

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

12 lines 311 B
export class AxiosHttpClientResponse { constructor(axiosResponse) { this.axiosResponse = axiosResponse; } getData() { return this.axiosResponse.data; } getUnderlying() { return this.axiosResponse; } } //# sourceMappingURL=AxiosHttpClientResponse.js.map