UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

18 lines (17 loc) 302 B
/** * Arguments for CheckMetadata class. */ export interface CheckMetadataArgs { /** * Class to which index is applied. */ target: Function | string; /** * Check constraint name. */ name?: string; /** * Check expression. */ expression: string; }