UNPKG

onix-chess-game

Version:
7 lines (6 loc) 366 B
import { Reducer, Store } from 'redux'; import { BoardState } from './BoardState'; import { BoardAction } from './BoardActions'; export declare const boardReducer: Reducer<BoardState, BoardAction>; export declare const createBoardStore: (preloadedState: BoardState) => Store<BoardState, BoardAction>; export declare type BoardStore = Store<BoardState, BoardAction>;