UNPKG

onix-chess-game

Version:
11 lines (10 loc) 355 B
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;