UNPKG

@remotion/renderer

Version:

Render Remotion videos using Node.js or Bun

18 lines (17 loc) 554 B
import type { BrowserExecutable } from '../browser-executable'; export declare const browserExecutableOption: { name: string; cliFlag: "browser-executable"; description: () => import("react/jsx-runtime").JSX.Element; ssrName: "browserExecutable"; docLink: string; type: BrowserExecutable; getValue: ({ commandLine }: { commandLine: Record<string, unknown>; }) => { source: string; value: BrowserExecutable; }; setConfig: (value: BrowserExecutable) => void; id: "browser-executable"; };