UNPKG

@angstone/monostone

Version:

monolitic event-sourced framework

11 lines (10 loc) 327 B
import { IEffect, IEffectLoaded } from '../interfaces'; export declare function createEffect(effectRecipe: { featurePath: string; effectName: string; }): IEffectLoaded; export declare function createEffects(effectsRecipe: { featureName: string; effects: IEffect[]; featurePath: string; }): IEffectLoaded[];