@remotion/cli
Version:
Control Remotion features using the `npx remotion` command
9 lines (8 loc) • 378 B
TypeScript
import type { JobProgressCallback, RenderJob } from '@remotion/studio-server';
export declare const processStill: ({ job, remotionRoot, entryPoint, onProgress, addCleanupCallback, }: {
job: RenderJob;
remotionRoot: string;
entryPoint: string;
onProgress: JobProgressCallback;
addCleanupCallback: (label: string, cb: () => void) => void;
}) => Promise<void>;