import { getAllActionNames } from '../decorators';
export function getEffectActionFactories(target) {
return getAllActionNames(target).reduce((result, name) => ({
...result,
[name]: (params) => ({
ayanami: target,
actionName: name,
params,
}),
}), {});
}