typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
11 lines (10 loc) • 419 B
TypeScript
import { ObjectType } from "../common/ObjectType";
import { EntitySchema } from "../index";
/**
* Thrown when no result could be found in methods which are not allowed to return undefined or an empty set.
*/
export declare class EntityNotFoundError extends Error {
name: string;
constructor(entityClass: ObjectType<any> | EntitySchema<any> | string, criteria: any);
private stringifyCriteria(criteria);
}