@khazh/tic-tac-toe-react
Version:
A customizable Tic Tac Toe game component for React with AI opponent, configurable board size, and win conditions
12 lines • 352 B
TypeScript
import React from "react";
interface TicTacToeProps {
initialBoardSize?: number;
initialWinLength?: number;
showConfigControls?: boolean;
className?: string;
style?: React.CSSProperties;
onWinner?: () => void;
}
declare const TicTacToe: React.FC<TicTacToeProps>;
export default TicTacToe;
//# sourceMappingURL=TicTacToe.d.ts.map