init commit
This commit is contained in:
17
remotion/node_modules/@remotion/renderer/dist/options/chrome-mode.d.ts
generated
vendored
Normal file
17
remotion/node_modules/@remotion/renderer/dist/options/chrome-mode.d.ts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
export declare const validChromeModeOptions: readonly ["headless-shell", "chrome-for-testing"];
|
||||
export type ChromeMode = (typeof validChromeModeOptions)[number];
|
||||
export declare const chromeModeOption: {
|
||||
cliFlag: "chrome-mode";
|
||||
name: string;
|
||||
ssrName: string;
|
||||
description: () => import("react/jsx-runtime").JSX.Element;
|
||||
docLink: string;
|
||||
getValue: ({ commandLine }: {
|
||||
commandLine: Record<string, unknown>;
|
||||
}) => {
|
||||
value: "chrome-for-testing" | "headless-shell";
|
||||
source: string;
|
||||
};
|
||||
setConfig: (newChromeMode: "chrome-for-testing" | "headless-shell") => void;
|
||||
type: "chrome-for-testing" | "headless-shell";
|
||||
};
|
||||
Reference in New Issue
Block a user