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

16 lines
427 B
TypeScript

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