chore: export TicTactToePart

This commit is contained in:
hyper 2026-04-12 16:28:50 +08:00
parent 6ac5ac4b9a
commit d5f65fa6cd
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ const WINNING_LINES: number[][][] = [
export type PlayerType = 'X' | 'O';
export type WinnerType = PlayerType | 'draw' | null;
type TicTacToePart = Part<{ player: PlayerType }>;
export type TicTacToePart = Part<{ player: PlayerType }>;
export function createInitialState() {
return {