ReduxStateEquals<TState extends ReduxState> typedef

ReduxStateEquals<TState extends ReduxState> = bool Function(TState before, TState after)

通知前の判定カスタマイズ関数. before/afterをチェックし、falseを返した場合は変更を行わない.

Implementation

typedef ReduxStateEquals<TState extends ReduxState> = bool Function(
    TState before, TState after);