UNPKG

@fabric-es/fabric-cqrs

Version:

Hyperledger Fabric middleware for event sourcing and cqrs pattern

5 lines (4 loc) 125 B
import { State } from './state'; export interface ActionHandler { [Key: string]: (state: State, action: any) => State; }