import { ICommand } from './command.interface'; export interface ICommandBus { execute(command: T): Promise; }