UNPKG

onix-chess-game

Version:
16 lines (15 loc) 394 B
import { GameRelatedStore } from 'onix-chess'; import * as React from 'react'; export interface CapturesProps { store: GameRelatedStore; piece: string; } export declare class Captures extends React.Component<CapturesProps, {}> { /** * constructor */ constructor(props: CapturesProps); private moveToPly; private pieceClick; render(): JSX.Element | null; }