typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
10 lines (9 loc) • 354 B
TypeScript
import { EntityMetadata } from "../metadata/EntityMetadata";
/**
* 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 Error {
name: string;
constructor(metadata: EntityMetadata, id: any);
}