UNPKG

node-ts-architecture-module

Version:
5 lines (4 loc) 122 B
import ICommand from './ICommand'; export default interface ICommandBus { handle(command: ICommand): Promise<void>; }