clumsy-graphics
Version:
a tool for rapidly developing animations where frames are described using svg elements à la react 🙃
9 lines (8 loc) • 367 B
TypeScript
import { FunctionResult } from '../models/common';
import { getAnimationModule } from './getAnimationModule';
export interface RenderAnimationFrameApi {
animationModule: FunctionResult<typeof getAnimationModule>;
frameIndex: number;
frameFileOutputPath: string;
}
export declare function renderAnimationFrame(api: RenderAnimationFrameApi): Promise<void>;