This commit is contained in:
Maciej Caderek
2022-02-18 22:24:04 +01:00
parent 4dff0f19fa
commit 9aae91baff
14 changed files with 40 additions and 17 deletions

View File

@@ -69,6 +69,7 @@ export type Style = {
moveIndicator: MoveIndicator;
border: SquareStyle;
coords: Coords;
ico?: string;
};
export type PieceType = "k" | "q" | "r" | "b" | "n" | "p";
@@ -206,10 +207,3 @@ export type Header = {
Site: string | null;
Result: string | null;
};
export type CreateAnimation = (
pgn: string,
boardConfig: BoardConfig,
size: Size,
includeTitleScreen: boolean
) => Promise<File>;