UNPKG

@herlinus/coloquent

Version:

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

13 lines 292 B
export class FilterSpec { constructor(attribute, value) { this.attribute = attribute; this.value = value; } getAttribute() { return this.attribute; } getValue() { return this.value; } } //# sourceMappingURL=FilterSpec.js.map