hydrate-mongodb
Version:
An Object Document Mapper (ODM) for MongoDB.
20 lines (19 loc) • 574 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var MappingBuilder = (function () {
function MappingBuilder(context, type, mapping) {
this.context = context;
this.type = type;
this.mapping = mapping;
}
MappingBuilder.prototype.populate = function () {
if (!this._populated) {
this._populated = true;
this.populateCore();
}
};
MappingBuilder.prototype.populateCore = function () {
};
return MappingBuilder;
}());
exports.MappingBuilder = MappingBuilder;