UNPKG

typeorm

Version:

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

9 lines (8 loc) 262 B
import { Subject } from "../persistence/Subject"; /** * Thrown when same object is scheduled for remove and updation at the same time. */ export declare class SubjectRemovedAndUpdatedError extends Error { name: string; constructor(subject: Subject); }