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

10 lines (9 loc) 240 B
import BaseEntity from "./BaseEntity"; declare abstract class DataMapperEntity extends BaseEntity { constructor(data: { _id?: string; _rev?: string; [key: string]: any; }); } export default DataMapperEntity;