import { IAction } from './action.interface'; export interface IActionHandler { execute(command: T): Promise; }