UNPKG

@addapptables/microservice

Version:
7 lines (6 loc) 270 B
import { ICommand } from './command.interface'; import { ICommandDto } from './command-dto-interface'; import { IHandler } from '../handler.interface'; export interface ICommandHandler<T extends ICommand<ICommandDto>> extends IHandler<T> { handle(event: T): void; }