UNPKG

@kingdom-sdk/core

Version:

Core module to design DDD applications in TypeScript

9 lines (8 loc) 249 B
import { Props } from '../../interfaces/Props'; export declare class ValueObject<Props_T extends Props> { readonly props: Props_T; constructor(props: Props_T); toString(): string; toHash(): string; equals(other: any): boolean; }