@naturalcycles/db-lib
Version:
Lowest Common Denominator API to supported Databases
14 lines (13 loc) • 485 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DBModelType = exports.DBRelation = void 0;
var DBRelation;
(function (DBRelation) {
DBRelation["ONE_TO_ONE"] = "ONE_TO_ONE";
DBRelation["ONE_TO_MANY"] = "ONE_TO_MANY";
})(DBRelation || (exports.DBRelation = DBRelation = {}));
var DBModelType;
(function (DBModelType) {
DBModelType["DBM"] = "DBM";
DBModelType["BM"] = "BM";
})(DBModelType || (exports.DBModelType = DBModelType = {}));