export interface ValueObject { readonly props: Props; equals(other: ValueObject): boolean; } export type ValueObjectAlias = ValueObject;