UNPKG

@henteko/kumiki

Version:

A video generation tool that creates videos from JSON configurations

17 lines 488 B
import { BaseScene } from '../scenes/base.js'; import type { VideoScene } from '../types/index.js'; export declare class VideoSceneRenderer extends BaseScene<VideoScene> { /** * Validate video scene configuration */ validate(): boolean; /** * Render video scene to static image (first frame) */ renderStatic(): Promise<string>; /** * Render video scene to video */ renderVideo(): Promise<string>; } //# sourceMappingURL=video.d.ts.map