UNPKG

283 BTypeScriptView Raw
1import { EntitySchema } from "../index";
2/**
3 * Thrown when repository for the given class is not found.
4 */
5export declare class RepositoryNotFoundError extends Error {
6 name: string;
7 constructor(connectionName: string, entityClass: Function | EntitySchema<any> | string);
8}