onix-chess-game
Version:
Chess game board
16 lines (15 loc) • 394 B
TypeScript
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;
}