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

19 lines
472 B
TypeScript

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