@maicol07/coloquent
Version:
Library for retrieving model objects from a JSON-API, with a fluent syntax inspired by Laravel Eloquent.
17 lines • 416 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QueryParam = void 0;
class QueryParam {
constructor(name, value = null) {
this._name = name;
this._value = value;
}
get name() {
return this._name;
}
get value() {
return this._value;
}
}
exports.QueryParam = QueryParam;
//# sourceMappingURL=QueryParam.js.map