UNPKG

curli-bus

Version:

Simple Command Bus Implementation (CQRS) for NodeJS/Typescript.

6 lines (5 loc) 131 B
import {Event} from "./Event"; export type EventSubscriber = { getEventName(): string; handle <T>(event: Event): T; }