UNPKG

mikro-orm-interactive-generator

Version:

MikroORM + knexJS interactive migration generator

6 lines (5 loc) 223 B
import {CommandInterface} from "../command/command.interface"; export interface CommandHandlerInterface { handle(command: CommandInterface) : Promise<void> | void; isEligible(command: CommandInterface) : boolean; }