UNPKG

typeorm

Version:

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

7 lines (6 loc) 188 B
/** * Same as Partial<T> but goes deeper and makes Partial<T> all its properties and sub-properties. */ export declare type DeepPartial<T> = { [P in keyof T]?: DeepPartial<T[P]>; };