UNPKG
mikro-orm-interactive-generator
Version:
latest (0.1.0)
0.1.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
MikroORM + knexJS interactive migration generator
mikro-orm-interactive-generator
/
src
/
handler
/
command-handler.interface.ts
6 lines
(5 loc)
•
223 B
text/typescript
View Raw
1
2
3
4
5
6
import
{
CommandInterface
}
from
"../command/command.interface"
;
export
interface
CommandHandlerInterface
{
handle
(
command
:
CommandInterface
) :
Promise
<
void
> |
void
;
isEligible
(
command
:
CommandInterface
) :
boolean
; }