UNPKG

@remotion/renderer

Version:

Render Remotion videos using Node.js or Bun

18 lines (17 loc) 582 B
export declare const validChromeModeOptions: readonly ["headless-shell", "chrome-for-testing"]; export type ChromeMode = (typeof validChromeModeOptions)[number]; export declare const chromeModeOption: { cliFlag: "chrome-mode"; name: string; ssrName: string; description: () => import("react/jsx-runtime").JSX.Element; docLink: string; getValue: ({ commandLine }: { commandLine: Record<string, unknown>; }) => { value: ChromeMode; source: string; }; setConfig: (newChromeMode: ChromeMode) => void; type: ChromeMode; };