UNPKG

typeorm

Version:

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

11 lines (10 loc) 236 B
/** * Special options passed to Repository#persist method. */ export interface SaveOptions { /** * Additional data to be passed with persist method. * This data can be used in subscribers then. */ data?: any; }