UNPKG

@addapptables/microservice

Version:
8 lines (6 loc) 269 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; }