UNPKG

259 BTypeScriptView Raw
1/**
2 * Thrown if custom repository inherits Repository class however entity is not set in @EntityRepository decorator.
3 */
4export declare class CustomRepositoryCannotInheritRepositoryError extends Error {
5 name: string;
6 constructor(repository: any);
7}