decla-red/shared/src/commands/command-executors.ts
schmelczerandras e01400058d Fix ide support
2020-10-07 18:35:32 +02:00

3 lines
81 B
TypeScript

export type CommandExecutors = {
[type: string]: (command: any) => unknown;
};