Files
story-studio/remotion/node_modules/@remotion/renderer/dist/options/scale.d.ts
2026-02-21 10:33:18 +01:00

16 lines
389 B
TypeScript

export declare const scaleOption: {
name: string;
cliFlag: "scale";
description: () => import("react/jsx-runtime").JSX.Element;
ssrName: string;
docLink: string;
type: number;
getValue: ({ commandLine }: {
commandLine: Record<string, unknown>;
}) => {
source: string;
value: number;
};
setConfig: (scale: number) => void;
};