UNPKG

ayanami

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