UNPKG

clumsy-graphics

Version:

a tool for rapidly developing animations where frames are described using svg elements à la react 🙃

8 lines (7 loc) 409 B
import { RenderAnimationModuleApi } from '../renderAnimationModule/renderAnimationModule'; export interface StartAnimationDevelopmentApi extends Pick<RenderAnimationModuleApi, 'numberOfFrameRendererWorkers'> { animationModulePath: string; generatedAssetsDirectoryPath: string; clientServerPort: number; } export declare function startAnimationDevelopment(api: StartAnimationDevelopmentApi): void;