onix-chess-game
Version:
Chess game board
5 lines (4 loc) • 308 B
TypeScript
import { Store, AnyAction } from 'redux';
import { WatchGameState } from "./WatchGameState";
export declare const createWatchGameStore: (preloadedState: WatchGameState) => Store<import("redux").CombinedState<WatchGameState>, AnyAction>;
export declare type WatchGameStore = Store<WatchGameState, AnyAction>;