UNPKG

@blueleader07/typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.

12 lines (10 loc) 312 B
/** * Interface for entity metadata mappings stored inside "schemas" instead of models decorated by decorators. */ export class EntitySchema { constructor(options) { this.options = options; this["@instanceof"] = Symbol.for("EntitySchema"); } } //# sourceMappingURL=EntitySchema.js.map