UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, 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; }