sequelize-typescript
Version:
Decorators and some other features for sequelize
13 lines • 379 B
JavaScript
/**
* Dummy database file, which gets required by sequelize, to
* make validation of models possible without using the
* actual ORM or any database connection.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.verbose = void 0;
function verbose() {
return {};
}
exports.verbose = verbose;
//# sourceMappingURL=db-dialect-dummy.js.map
;