@remotion/renderer 4.0.426 → 4.0.428

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/client.d.ts CHANGED
@@ -1258,6 +1258,22 @@ export declare const BrowserSafeApis: {
1258
1258
  setConfig(value: boolean): void;
1259
1259
  id: "enable-experimental-client-side-rendering";
1260
1260
  };
1261
+ experimentalVisualModeOption: {
1262
+ name: string;
1263
+ cliFlag: "experimental-visual-mode";
1264
+ description: () => import("react/jsx-runtime").JSX.Element;
1265
+ ssrName: null;
1266
+ docLink: string;
1267
+ type: boolean;
1268
+ getValue: ({ commandLine }: {
1269
+ commandLine: Record<string, unknown>;
1270
+ }) => {
1271
+ value: boolean;
1272
+ source: string;
1273
+ };
1274
+ setConfig(value: boolean): void;
1275
+ id: "experimental-visual-mode";
1276
+ };
1261
1277
  keyboardShortcutsOption: {
1262
1278
  name: string;
1263
1279
  cliFlag: "disable-keyboard-shortcuts";