@remotion/renderer 4.0.446 → 4.0.447

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
@@ -246,6 +246,22 @@ export declare const BrowserSafeApis: {
246
246
  separateAudioTo: string | null;
247
247
  }) => void;
248
248
  options: {
249
+ allowHtmlInCanvasOption: {
250
+ name: string;
251
+ cliFlag: "allow-html-in-canvas";
252
+ description: () => import("react/jsx-runtime").JSX.Element;
253
+ ssrName: null;
254
+ docLink: string;
255
+ type: boolean;
256
+ getValue: ({ commandLine }: {
257
+ commandLine: Record<string, unknown>;
258
+ }) => {
259
+ value: boolean;
260
+ source: string;
261
+ };
262
+ setConfig(value: boolean): void;
263
+ id: "allow-html-in-canvas";
264
+ };
249
265
  audioCodecOption: {
250
266
  cliFlag: "audio-codec";
251
267
  setConfig: (audioCodec: "aac" | "mp3" | "opus" | "pcm-16" | null) => void;