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

19 lines
475 B
TypeScript

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