typeorm
Version:
Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
9 lines (8 loc) • 370 B
TypeScript
import { Migration } from "../migration/Migration";
import { TypeORMError } from "./TypeORMError";
/**
* Thrown when the per-migration transaction mode is overriden but the global transaction mode is set to "all".
*/
export declare class ForbiddenTransactionModeOverrideError extends TypeORMError {
constructor(migrationsOverridingTransactionMode: Migration[]);
}