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) 289 B
import { MalfunctionError } from 'helpful-errors'; export declare class DomainObjectMetadataMustBeDefinedError extends MalfunctionError { constructor({ domainObjectName, nameOfFunctionNeededFor, }: { domainObjectName: string; nameOfFunctionNeededFor: string; }); }