This commit is contained in:
Maciej Caderek
2022-02-17 23:15:58 +01:00
parent c4e02072bc
commit 70b2245570

View File

@@ -206,3 +206,10 @@ export type Header = {
Site: string | null;
Result: string | null;
};
export type CreateAnimation = (
pgn: string,
boardConfig: BoardConfig,
size: Size,
includeTitleScreen: boolean
) => Promise<File>;