Interface ReduxStore<T>

A redux store for mobx-keystone.

interface ReduxStore<T> {
    dispatch(action): ReduxAction;
    getState(): SnapshotOutOf<T>;
    subscribe(listener): OnSnapshotDisposer;
}

Type Parameters

  • T

Methods