UNPKG

typeorm

Version:

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

11 lines (10 loc) 530 B
import { Subject } from "../persistence/Subject"; import { TypeORMError } from "./TypeORMError"; /** * Thrown when operation is going to be executed on a subject without identifier. * This error should never be thrown, however it still presents to prevent user from updation or removing the whole table. * If this error occurs still, it most probably is an ORM internal problem which must be reported and fixed. */ export declare class SubjectWithoutIdentifierError extends TypeORMError { constructor(subject: Subject); }