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