onix-chess-game
Version:
Chess game board
11 lines (10 loc) • 349 B
TypeScript
import { IntlState } from "onix-app";
import { GameState } from 'onix-chess';
import { BoardState } from "../../BoardState";
import { GameProps } from "../GameProps";
export interface WatchGameState {
intl: IntlState;
board: BoardState;
game: GameState;
}
export declare const createWatchGameState: (props: GameProps) => WatchGameState;