UNPKG

typeorm

Version:

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

14 lines (13 loc) 292 B
/** * Arguments for InheritanceMetadata class. */ export interface InheritanceMetadataArgs { /** * Class to which inheritance is applied. */ readonly target?: Function | string; /** * Inheritance type. */ readonly type: "single-table" | "class-table"; }