UNPKG

@fabric-es/fabric-cqrs

Version:

Hyperledger Fabric middleware for event sourcing and cqrs pattern

8 lines (7 loc) 149 B
export interface State { tx_id: string; type: string; result: any; error: string | null; } export declare const initialState: State;