UNPKG

@cashfarm/plow

Version:

Library for validating input data and parameters

11 lines (10 loc) 290 B
import { Type } from '@cashfarm/lang'; import { IDomainEvent } from './domainEvent'; /** * Returns a symbol used to created methods that handle events * * @export * @param {(DomainEvent & Type)} e * @returns {symbol} */ export declare function Handle(e: IDomainEvent & Type): symbol;