We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a03e3e commit d172b34Copy full SHA for d172b34
src/ReduceStore.ts
@@ -4,7 +4,7 @@ const assert = require("assert");
4
import { Store, Payload } from "almin";
5
import { ReduceState } from "./ReduceState";
6
export class ReduceStore extends Store {
7
- state: ReduceState | null;
+ protected state: ReduceState | null;
8
9
constructor() {
10
super();
@@ -39,7 +39,6 @@ this.state.constructor: ${this.state!.constructor}
39
/**
40
* Call `State#reduce` and setState
41
* @param {Payload} payload
42
- * @private
43
*/
44
private _onDispatch(payload: Payload): void {
45
if (process.env.NODE_ENV !== "production") {
0 commit comments