UNPKG

nosqlax

Version:

NoSQLax is a modern, lightweight JavaScript Object Document Mapper(ODM) library that makes working with CouchDB a breeze. Inspired by CouchDB’s “Relax” philosophy and the chill vibes of Snorlax, NoSQLax takes the hassle out of managing your data, offering

14 lines (13 loc) 460 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const BaseEntity_1 = __importDefault(require("./BaseEntity")); class DataMapperEntity extends BaseEntity_1.default { // No other functionality for now constructor(data) { super(data); } } exports.default = DataMapperEntity;