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