sparkletown/sparkle

View on GitHub
src/types/redux.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface ReduxAction<T, P extends {}> {
  type: T;
  payload: P;
}