HarmoWatch/redux-decorators

View on GitHub
src/action/function/redux-action-function.type.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type ReduxActionFunction<P = {} | void> = ((...rest: any[]) => Promise<P> | P) | string;