UNPKG

354 BTypeScriptView Raw
1import { EntityMetadata } from "../metadata/EntityMetadata";
2/**
3 * Thrown when user tries to create entity id map from the mixed id value,
4 * but id value is a single value when entity requires multiple values.
5 */
6export declare class CannotCreateEntityIdMapError extends Error {
7 name: string;
8 constructor(metadata: EntityMetadata, id: any);
9}