From f3de09eb60894e9b86c801df3b07b91f29e4b795 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 18 Apr 2022 13:20:17 +0100 Subject: [PATCH] script: Add a missing comma in a type definition Signed-off-by: Ian Jackson --- templates/script.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/script.ts b/templates/script.ts index ab7b2ab6..7007b473 100644 --- a/templates/script.ts +++ b/templates/script.ts @@ -971,7 +971,7 @@ function some_mousedown(e : MouseEvent) { type MouseFindClicked = null | { clicked: PieceId[], held: PlayerId | null, - pinned: boolean + pinned: boolean, }; type PieceSet = { [piece: string]: true }; -- 2.30.2