From 894862425f2f3053789403979da8e03b48a6b4bf Mon Sep 17 00:00:00 2001 From: Thibault Duplessis Date: Mon, 6 May 2024 10:39:30 +0200 Subject: [PATCH] type Config.coordinatesOnSquares - for #301 - for lichess-org/lila#15221 --- src/config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config.ts b/src/config.ts index 5270db4b..6f390c51 100644 --- a/src/config.ts +++ b/src/config.ts @@ -12,6 +12,7 @@ export interface Config { lastMove?: cg.Key[]; // squares part of the last move ["c3", "c4"] selected?: cg.Key; // square currently selected "a1" coordinates?: boolean; // include coords attributes + coordinatesOnSquares: boolean; // include coords attributes on every square autoCastle?: boolean; // immediately complete the castle by moving the rook after king move viewOnly?: boolean; // don't bind events: the user will never be able to move pieces around disableContextMenu?: boolean; // because who needs a context menu on a chessboard