UNPKG

@schorts/shared-kernel

Version:

A modular, type-safe foundation for building expressive, maintainable applications. This package provides core abstractions for domain modeling, HTTP integration, authentication, state management, and more — designed to be framework-agnostic and highly ex

8 lines (7 loc) 185 B
export interface ValueObject { readonly value: unknown; readonly valueType: string; readonly attributeName: string; isValid: boolean; equals(valueObject: unknown): boolean; }