@remotion/renderer 4.0.514 → 4.0.516
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 +16 -0
- package/dist/esm/client.mjs +673 -634
- package/dist/esm/index.mjs +52 -3
- package/dist/index.d.ts +1 -1
- package/dist/options/enable-cancellation.d.ts +16 -0
- package/dist/options/enable-cancellation.js +31 -0
- package/dist/options/index.d.ts +16 -0
- package/dist/options/index.js +2 -0
- package/dist/prestitcher-memory-usage.d.ts +4 -0
- package/dist/prestitcher-memory-usage.js +10 -3
- package/dist/render-frame-and-retry-target-close.d.ts +1 -1
- package/dist/render-frame-with-option-to-reject.d.ts +1 -1
- package/dist/render-frame-with-option-to-reject.js +1 -1
- package/dist/render-frame.d.ts +1 -1
- package/dist/render-frames.d.ts +3 -3
- package/dist/render-media.js +7 -3
- package/dist/write-with-backpressure.d.ts +5 -0
- package/dist/write-with-backpressure.js +34 -0
- package/package.json +13 -13
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";
|