UNPKG

@angstone/monostone

Version:

monolitic event-sourced framework

12 lines (11 loc) 210 B
import { ICommand } from "./"; /** * recipe to create an event to be dispatched to Event Store */ export interface IEventRecipe { command: ICommand; /** * parameters */ request?: any; }