UNPKG

react-chessboard

Version:
10 lines (9 loc) 355 B
import type { DraggingPieceDataType, PieceDataType } from './types.js'; type PieceProps = { clone?: boolean; isSparePiece?: DraggingPieceDataType['isSparePiece']; position: DraggingPieceDataType['position']; pieceType: PieceDataType['pieceType']; }; export declare const Piece: import("react").NamedExoticComponent<PieceProps>; export {};