UNPKG

clumsy-graphics

Version:

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

15 lines (14 loc) 491 B
import { MessageBase } from '../../models/common'; import * as IO from 'io-ts'; export interface RenderAnimationFrameMessage extends MessageBase<'renderAnimationFrame', { frameIndex: number; framePngOutputPath: string; }> { } export declare const RenderAnimationFrameMessageCodec: IO.ExactC<IO.TypeC<{ messageType: IO.LiteralC<"renderAnimationFrame">; messagePayload: IO.ExactC<IO.TypeC<{ frameIndex: IO.NumberC; framePngOutputPath: IO.StringC; }>>; }>>;