@remotion/renderer 4.0.421 → 4.0.423

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
@@ -1085,6 +1085,36 @@ export declare const BrowserSafeApis: {
1085
1085
  };
1086
1086
  setConfig(value: boolean): void;
1087
1087
  };
1088
+ numberOfSharedAudioTagsOption: {
1089
+ name: string;
1090
+ cliFlag: "number-of-shared-audio-tags";
1091
+ description: () => import("react/jsx-runtime").JSX.Element;
1092
+ ssrName: null;
1093
+ docLink: string;
1094
+ type: number;
1095
+ getValue: ({ commandLine }: {
1096
+ commandLine: Record<string, unknown>;
1097
+ }) => {
1098
+ value: number;
1099
+ source: string;
1100
+ };
1101
+ setConfig(value: number): void;
1102
+ };
1103
+ ipv4Option: {
1104
+ name: string;
1105
+ cliFlag: "ipv4";
1106
+ description: () => import("react/jsx-runtime").JSX.Element;
1107
+ ssrName: null;
1108
+ docLink: string;
1109
+ type: boolean;
1110
+ getValue: ({ commandLine }: {
1111
+ commandLine: Record<string, unknown>;
1112
+ }) => {
1113
+ value: boolean;
1114
+ source: string;
1115
+ };
1116
+ setConfig(value: boolean): void;
1117
+ };
1088
1118
  };
1089
1119
  validColorSpaces: readonly ["default", "bt709", "bt2020-ncl"];
1090
1120
  optionsMap: {