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

10 lines 350 B
import { ValueObject } from "./"; export declare abstract class SlugValue implements ValueObject { readonly valueType = "Slug"; readonly value: string; constructor(value: string); get isValid(): boolean; equals(valueObject: unknown): boolean; abstract readonly attributeName: string; } //# sourceMappingURL=slug-value.d.ts.map