UNPKG

@remotion/renderer

Version:

Render Remotion videos using Node.js or Bun

17 lines (16 loc) 448 B
import type { LogLevel } from '../log-level'; export declare const logLevelOption: { cliFlag: "log"; name: string; ssrName: string; description: () => import("react/jsx-runtime").JSX.Element; docLink: string; getValue: ({ commandLine }: { commandLine: Record<string, unknown>; }) => { value: LogLevel; source: string; }; setConfig: (newLogLevel: LogLevel) => void; type: LogLevel; };