UNPKG

typeorm

Version:

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

14 lines (13 loc) 261 B
/** * Arguments for NamingStrategyMetadata class. */ export interface NamingStrategyMetadataArgs { /** * Class to which this column is applied. */ readonly target: Function; /** * Strategy name. */ readonly name: string; }