From 70b224557068855a860bcac20dec965b26325237 Mon Sep 17 00:00:00 2001 From: Maciej Caderek Date: Thu, 17 Feb 2022 23:15:58 +0100 Subject: [PATCH] WIP --- src/types.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/types.ts b/src/types.ts index 5dcd289..00745a6 100644 --- a/src/types.ts +++ b/src/types.ts @@ -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;