From d5f65fa6cd92bc5eff0fe2c58eccfcd226adbde4 Mon Sep 17 00:00:00 2001 From: hyper Date: Sun, 12 Apr 2026 16:28:50 +0800 Subject: [PATCH] chore: export TicTactToePart --- src/samples/tic-tac-toe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/samples/tic-tac-toe.ts b/src/samples/tic-tac-toe.ts index a6c9649..4ea5b49 100644 --- a/src/samples/tic-tac-toe.ts +++ b/src/samples/tic-tac-toe.ts @@ -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 {