@remotion/renderer 4.0.407 → 4.0.409
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 +45 -0
- package/dist/esm/client.mjs +507 -411
- package/dist/options/ask-ai.d.ts +15 -0
- package/dist/options/ask-ai.js +30 -0
- package/dist/options/experimental-client-side-rendering.d.ts +15 -0
- package/dist/options/experimental-client-side-rendering.js +30 -0
- package/dist/options/index.d.ts +45 -0
- package/dist/options/index.js +6 -0
- package/dist/options/is-production-key.d.ts +15 -0
- package/dist/options/is-production-key.js +35 -0
- package/dist/options/keyboard-shortcuts.d.ts +15 -0
- package/dist/options/keyboard-shortcuts.js +30 -0
- package/package.json +13 -13
package/dist/client.d.ts
CHANGED
|
@@ -1010,6 +1010,51 @@ export declare const BrowserSafeApis: {
|
|
|
1010
1010
|
setConfig: (value: string | null) => void;
|
|
1011
1011
|
type: string | null;
|
|
1012
1012
|
};
|
|
1013
|
+
askAIOption: {
|
|
1014
|
+
name: string;
|
|
1015
|
+
cliFlag: "disable-ask-ai";
|
|
1016
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1017
|
+
ssrName: null;
|
|
1018
|
+
docLink: string;
|
|
1019
|
+
type: boolean;
|
|
1020
|
+
getValue: ({ commandLine }: {
|
|
1021
|
+
commandLine: Record<string, unknown>;
|
|
1022
|
+
}) => {
|
|
1023
|
+
value: boolean;
|
|
1024
|
+
source: string;
|
|
1025
|
+
};
|
|
1026
|
+
setConfig(value: boolean): void;
|
|
1027
|
+
};
|
|
1028
|
+
experimentalClientSideRenderingOption: {
|
|
1029
|
+
name: string;
|
|
1030
|
+
cliFlag: "enable-experimental-client-side-rendering";
|
|
1031
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1032
|
+
ssrName: null;
|
|
1033
|
+
docLink: string;
|
|
1034
|
+
type: boolean;
|
|
1035
|
+
getValue: ({ commandLine }: {
|
|
1036
|
+
commandLine: Record<string, unknown>;
|
|
1037
|
+
}) => {
|
|
1038
|
+
value: boolean;
|
|
1039
|
+
source: string;
|
|
1040
|
+
};
|
|
1041
|
+
setConfig(value: boolean): void;
|
|
1042
|
+
};
|
|
1043
|
+
keyboardShortcutsOption: {
|
|
1044
|
+
name: string;
|
|
1045
|
+
cliFlag: "disable-keyboard-shortcuts";
|
|
1046
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1047
|
+
ssrName: null;
|
|
1048
|
+
docLink: string;
|
|
1049
|
+
type: boolean;
|
|
1050
|
+
getValue: ({ commandLine }: {
|
|
1051
|
+
commandLine: Record<string, unknown>;
|
|
1052
|
+
}) => {
|
|
1053
|
+
value: boolean;
|
|
1054
|
+
source: string;
|
|
1055
|
+
};
|
|
1056
|
+
setConfig(value: boolean): void;
|
|
1057
|
+
};
|
|
1013
1058
|
};
|
|
1014
1059
|
validColorSpaces: readonly ["default", "bt709", "bt2020-ncl"];
|
|
1015
1060
|
optionsMap: {
|