memory-orm
Version:
client side ORM + map reduce
21 lines (20 loc) • 501 B
JavaScript
Object.defineProperty(exports, '__esModule', { value: true })
exports.Model = void 0
class Model extends Object {
get id() {
return this._id
}
static bless(o) {
Reflect.setPrototypeOf(o, this.prototype)
}
static deploy(struct) {}
static update(item, old) {}
static create(item) {}
static delete(old) {}
static map_partition(item, emit) {}
static map_reduce(item, emit) {}
static order(item, emit) {}
}
exports.Model = Model
//# sourceMappingURL=model.js.map