import { Type } from '@angular/core'; import { Action } from './action.types'; export type ActionEffect = { actions: Action[]; effect: (action: Action) => Promise; }; export type ActionEffects = { getEffects(): ActionEffect[]; }; export type ActionEffectsMap = { [key in keyof S]?: Type; };