UNPKG

@khazh/tic-tac-toe-react

Version:

A customizable Tic Tac Toe game component for React with AI opponent, configurable board size, and win conditions

8 lines 278 B
import type { Player, Score } from "../types/game"; export declare const useScore: () => { score: Score; updateScore: (winner: Player | null, isDraw: boolean) => void; resetScore: () => void; getTotalGames: () => number; }; //# sourceMappingURL=useScore.d.ts.map