UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, 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; }