From 641cd354d9958eca821f33d32e5b06a0e23f43f3 Mon Sep 17 00:00:00 2001 From: Joshua Thomas Date: Thu, 11 Sep 2025 18:15:21 -0700 Subject: [PATCH] fix: correct NotatedMove type declaration --- @types/chess/chess.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/@types/chess/chess.d.ts b/@types/chess/chess.d.ts index d1b9633..7d1e15c 100644 --- a/@types/chess/chess.d.ts +++ b/@types/chess/chess.d.ts @@ -121,7 +121,7 @@ declare namespace Chess { } interface NotatedMove { - dest: Squarethis.captureHistory = []; + dest: Square src: Square }