typeorm
Version:
Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
10 lines (9 loc) • 390 B
TypeScript
import { EntityMetadata } from "../metadata/EntityMetadata";
import { TypeORMError } from "./TypeORMError";
/**
* Thrown when user tries to create entity id map from the mixed id value,
* but id value is a single value when entity requires multiple values.
*/
export declare class CannotCreateEntityIdMapError extends TypeORMError {
constructor(metadata: EntityMetadata, id: any);
}