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