UNPKG

@remotion/cli

Version:

Control Remotion features using the `npx remotion` command

11 lines (10 loc) 467 B
import type { LogLevel } from '@remotion/renderer'; import type { JobProgressCallback, RenderJob } from '@remotion/studio-server'; export declare const processVideoJob: ({ job, remotionRoot, entryPoint, onProgress, addCleanupCallback, logLevel, }: { job: RenderJob; remotionRoot: string; entryPoint: string; onProgress: JobProgressCallback; addCleanupCallback: (label: string, cb: () => void) => void; logLevel: LogLevel; }) => Promise<void>;