import { AbstractAction, AbstractCommand } from '../commands'; export interface ICommand { command: string; Command: new (...args: any[]) => AbstractCommand; Action: new (...args: any[]) => AbstractAction; }