UNPKG

hex-architect

Version:

A collection of components for creating hexagonal architecture with ports and adapters which allows for clean separation of the application and domain layers from the execution environment.

5 lines (4 loc) 166 B
import { Query } from './query'; import { MessageHandler } from './message-handler'; export interface QueryHandler<T extends Query> extends MessageHandler<T> { }