UNPKG

@herlinus/coloquent

Version:

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

13 lines 284 B
export class Option { constructor(parameter, value) { this.parameter = parameter; this.value = value; } getParameter() { return this.parameter; } getValue() { return this.value; } } //# sourceMappingURL=Option.js.map