@remotion/cli
Version:
Control Remotion features using the `npx remotion` command
11 lines (10 loc) • 484 B
TypeScript
import type { RenderJob, RenderJobWithCleanup } from '@remotion/studio-server';
export declare const getRenderQueue: () => RenderJob[];
export declare const addJob: ({ job, entryPoint, remotionRoot, logLevel, }: {
job: RenderJobWithCleanup;
entryPoint: string;
remotionRoot: string;
logLevel: "error" | "info" | "trace" | "verbose" | "warn";
}) => void;
export declare const removeJob: (jobId: string) => void;
export declare const cancelJob: (jobId: string) => void;