@remotion/renderer
Version:
Render Remotion videos using Node.js or Bun
20 lines (19 loc) • 481 B
TypeScript
export declare const overrideWidthOption: {
name: string;
cliFlag: "width";
description: () => import("react/jsx-runtime").JSX.Element;
ssrName: null;
docLink: string;
type: number | null;
getValue: ({ commandLine }: {
commandLine: Record<string, unknown>;
}) => {
source: string;
value: number;
} | {
source: string;
value: null;
};
setConfig: (width: number | null) => void;
id: "width";
};