UNPKG

@grubou/bussy

Version:

Command & query bus implementations

6 lines (5 loc) 168 B
import { DomainEvent } from './DomainEvent'; export interface EventHandler<EVENT extends DomainEvent> { name(): string; reactTo(event: EVENT): Promise<void>; }