typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
13 lines (11 loc) • 338 B
JavaScript
/**
* Interface for entity metadata mappings stored inside "schemas" instead of models decorated by decorators.
*/
var EntitySchema = /** @class */ (function () {
function EntitySchema(options) {
this.options = options;
}
return EntitySchema;
}());
export { EntitySchema };
//# sourceMappingURL=EntitySchema.js.map