sequelize-typescript
Version:
Decorators and some other features for sequelize
11 lines • 432 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Association = void 0;
var Association;
(function (Association) {
Association["BelongsToMany"] = "belongsToMany";
Association["BelongsTo"] = "belongsTo";
Association["HasMany"] = "hasMany";
Association["HasOne"] = "hasOne";
})(Association = exports.Association || (exports.Association = {}));
//# sourceMappingURL=association.js.map
;