Fix ide support

This commit is contained in:
schmelczerandras 2020-10-07 18:35:32 +02:00
parent 1a3afe4dd0
commit e01400058d
14 changed files with 50 additions and 20 deletions

View file

@ -0,0 +1,3 @@
export type CommandExecutors = {
[type: string]: (command: any) => unknown;
};

View file

@ -1,9 +1,6 @@
import { CommandExecutors } from './command-executors';
import { Command } from './command';
export type CommandExecutors = {
[type: string]: (command: any) => unknown;
};
export abstract class CommandReceiver {
protected commandExecutors: CommandExecutors = {};