UNPKG

hex-architect

Version:

A collection of components for creating hexagonal architecture with ports and adapters which allows for clean separation of the application and domain layers from the execution environment.

9 lines (8 loc) 268 B
import { Event } from './event'; export declare abstract class DomainEvent implements Event { readonly eventId: string; readonly eventVersion: string; readonly eventType: string; constructor(eventId: string); static generateId(): string; }