@remotion/renderer 4.0.514 → 4.0.515

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
@@ -626,6 +626,22 @@ export declare const BrowserSafeApis: {
626
626
  setConfig: (value: boolean | null) => void;
627
627
  id: "enable-folder-expiry";
628
628
  };
629
+ enableCancellationOption: {
630
+ name: string;
631
+ cliFlag: "enable-cancellation";
632
+ description: () => import("react/jsx-runtime").JSX.Element;
633
+ ssrName: null;
634
+ docLink: string;
635
+ type: boolean;
636
+ setConfig: (value: boolean) => void;
637
+ getValue: ({ commandLine }: {
638
+ commandLine: Record<string, unknown>;
639
+ }) => {
640
+ value: boolean;
641
+ source: string;
642
+ };
643
+ id: "enable-cancellation";
644
+ };
629
645
  enableMultiprocessOnLinuxOption: {
630
646
  name: string;
631
647
  cliFlag: "enable-multiprocess-on-linux";