@remotion/renderer 4.0.487 → 4.0.489

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
@@ -1340,6 +1340,22 @@ export declare const BrowserSafeApis: {
1340
1340
  setConfig(value: boolean): void;
1341
1341
  id: "disable-ask-ai";
1342
1342
  };
1343
+ interactivityOption: {
1344
+ name: string;
1345
+ cliFlag: "disable-interactivity";
1346
+ description: () => import("react/jsx-runtime").JSX.Element;
1347
+ ssrName: null;
1348
+ docLink: string;
1349
+ type: boolean;
1350
+ getValue: ({ commandLine }: {
1351
+ commandLine: Record<string, unknown>;
1352
+ }) => {
1353
+ value: boolean;
1354
+ source: string;
1355
+ };
1356
+ setConfig(value: boolean): void;
1357
+ id: "disable-interactivity";
1358
+ };
1343
1359
  experimentalClientSideRenderingOption: {
1344
1360
  name: string;
1345
1361
  cliFlag: "enable-experimental-client-side-rendering";