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;