@remotion/renderer 4.0.312 → 4.0.313

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
@@ -917,6 +917,21 @@ export declare const BrowserSafeApis: {
917
917
  };
918
918
  setConfig(value: boolean): void;
919
919
  };
920
+ imageSequencePatternOption: {
921
+ name: string;
922
+ cliFlag: "image-sequence-pattern";
923
+ ssrName: string;
924
+ description: () => import("react/jsx-runtime").JSX.Element;
925
+ docLink: null;
926
+ type: string | null;
927
+ getValue: ({ commandLine }: {
928
+ commandLine: Record<string, unknown>;
929
+ }) => {
930
+ value: string;
931
+ source: string;
932
+ };
933
+ setConfig: (pattern: string | null) => void;
934
+ };
920
935
  };
921
936
  validColorSpaces: readonly ["default", "bt709", "bt2020-ncl"];
922
937
  optionsMap: {
@@ -1797,6 +1812,21 @@ export declare const BrowserSafeApis: {
1797
1812
  setConfig: (newChromeMode: import("./options/chrome-mode").ChromeMode) => void;
1798
1813
  type: import("./options/chrome-mode").ChromeMode;
1799
1814
  };
1815
+ readonly imageSequencePattern: {
1816
+ name: string;
1817
+ cliFlag: "image-sequence-pattern";
1818
+ ssrName: string;
1819
+ description: () => import("react/jsx-runtime").JSX.Element;
1820
+ docLink: null;
1821
+ type: string | null;
1822
+ getValue: ({ commandLine }: {
1823
+ commandLine: Record<string, unknown>;
1824
+ }) => {
1825
+ value: string;
1826
+ source: string;
1827
+ };
1828
+ setConfig: (pattern: string | null) => void;
1829
+ };
1800
1830
  };
1801
1831
  readonly renderMediaOnLambda: {
1802
1832
  readonly offthreadVideoCacheSizeInBytes: {