UNPKG

@maicol07/coloquent

Version:

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

17 lines 428 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FilterSpec = void 0; class FilterSpec { constructor(attribute, value) { this.attribute = attribute; this.value = value; } getAttribute() { return this.attribute; } getValue() { return this.value; } } exports.FilterSpec = FilterSpec; //# sourceMappingURL=FilterSpec.js.map