UNPKG

domain-objects

Version:

A simple, convenient way to represent domain objects, leverage domain knowledge, and add runtime validation in your code base.

8 lines (7 loc) 280 B
import { MalfunctionError } from 'helpful-errors'; export declare class DomainEntityPrimaryKeysMustBeDefinedError extends MalfunctionError { constructor({ entityName, nameOfFunctionNeededFor, }: { entityName: string; nameOfFunctionNeededFor: string; }); }