import { Command } from '@we-scrum/core'; import { Context } from './context'; export interface CommandHandler { handle(command: T, context: Context): Promise; }