UNPKG

@herlinus/coloquent

Version:

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

13 lines 280 B
export class QueryParam { constructor(name, value = null) { this._name = name; this._value = value; } get name() { return this._name; } get value() { return this._value; } } //# sourceMappingURL=QueryParam.js.map