2116 lines
76 KiB
TypeScript
2116 lines
76 KiB
TypeScript
export declare const optionsMap: {
|
|
readonly renderMedia: {
|
|
readonly mediaCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "media-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "mediaCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoThreads: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-video-threads";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoThreads";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly videoBitrate: {
|
|
name: string;
|
|
cliFlag: "video-bitrate";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (bitrate: string | null) => void;
|
|
};
|
|
readonly numberOfGifLoops: {
|
|
name: string;
|
|
cliFlag: "number-of-gif-loops";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "numberOfGifLoops";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: number;
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (newLoop: import("./number-of-gif-loops").NumberOfGifLoops) => void;
|
|
};
|
|
readonly repro: {
|
|
name: string;
|
|
cliFlag: "repro";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: boolean;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: boolean;
|
|
source: string;
|
|
};
|
|
setConfig: (should: boolean) => void;
|
|
};
|
|
readonly x264Preset: {
|
|
name: string;
|
|
cliFlag: "x264-preset";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "x264Preset";
|
|
docLink: string;
|
|
type: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow" | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow";
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (profile: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow" | null) => void;
|
|
};
|
|
readonly audioBitrate: {
|
|
name: string;
|
|
cliFlag: "audio-bitrate";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: string;
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
readonly colorSpace: {
|
|
name: string;
|
|
cliFlag: "color-space";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
ssrName: string;
|
|
type: "bt2020-ncl" | "bt709" | "default" | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: "bt2020-ncl" | "bt709" | "default";
|
|
};
|
|
setConfig: (value: "bt2020-ncl" | "bt709" | "default" | null) => void;
|
|
};
|
|
readonly codec: {
|
|
name: string;
|
|
cliFlag: "codec";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: "aac" | "gif" | "h264" | "h264-mkv" | "h264-ts" | "h265" | "mp3" | "prores" | "vp8" | "vp9" | "wav";
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}, { compositionCodec, configFile, downloadName, outName, uiCodec, }: {
|
|
outName: string | null;
|
|
downloadName: string | null;
|
|
configFile: "aac" | "gif" | "h264" | "h264-mkv" | "h264-ts" | "h265" | "mp3" | "prores" | "vp8" | "vp9" | "wav" | null;
|
|
uiCodec: "aac" | "gif" | "h264" | "h264-mkv" | "h264-ts" | "h265" | "mp3" | "prores" | "vp8" | "vp9" | "wav" | null;
|
|
compositionCodec: "aac" | "gif" | "h264" | "h264-mkv" | "h264-ts" | "h265" | "mp3" | "prores" | "vp8" | "vp9" | "wav" | null;
|
|
}) => {
|
|
value: "aac" | "gif" | "h264" | "h264-mkv" | "h264-ts" | "h265" | "mp3" | "prores" | "vp8" | "vp9" | "wav";
|
|
source: string;
|
|
};
|
|
setConfig: (newCodec: import("..").CodecOrUndefined) => void;
|
|
};
|
|
readonly disallowParallelEncoding: {
|
|
name: string;
|
|
cliFlag: "disallow-parallel-encoding";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: boolean;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: boolean;
|
|
source: string;
|
|
};
|
|
setConfig(value: boolean): void;
|
|
};
|
|
readonly jpegQuality: {
|
|
name: string;
|
|
cliFlag: "jpeg-quality";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: number;
|
|
setConfig: (q: number | undefined) => void;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
};
|
|
readonly encodingMaxRate: {
|
|
name: string;
|
|
cliFlag: "max-rate";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "encodingMaxRate";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: string;
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (newMaxRate: string | null) => void;
|
|
};
|
|
readonly encodingBufferSize: {
|
|
name: string;
|
|
cliFlag: "buffer-size";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "encodingBufferSize";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: string;
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (bitrate: string | null) => void;
|
|
};
|
|
readonly muted: {
|
|
name: string;
|
|
cliFlag: "muted";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: boolean;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: boolean;
|
|
};
|
|
setConfig: () => void;
|
|
};
|
|
readonly logLevel: {
|
|
cliFlag: "log";
|
|
name: string;
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
source: string;
|
|
};
|
|
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
};
|
|
readonly timeoutInMilliseconds: {
|
|
name: string;
|
|
cliFlag: "timeout";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "timeoutInMilliseconds";
|
|
docLink: string;
|
|
type: number;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
setConfig: (value: number) => void;
|
|
};
|
|
readonly binariesDirectory: {
|
|
name: string;
|
|
cliFlag: "binaries-directory";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "binariesDirectory";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
readonly forSeamlessAacConcatenation: {
|
|
name: string;
|
|
cliFlag: "for-seamless-aac-concatenation";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: true;
|
|
} | {
|
|
source: string;
|
|
value: false;
|
|
};
|
|
setConfig: (value: boolean) => void;
|
|
ssrName: string;
|
|
type: boolean;
|
|
};
|
|
readonly separateAudioTo: {
|
|
cliFlag: string;
|
|
description: () => string;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
name: string;
|
|
setConfig: () => never;
|
|
ssrName: string;
|
|
type: string | null;
|
|
};
|
|
readonly audioCodec: {
|
|
cliFlag: "audio-codec";
|
|
setConfig: (audioCodec: "aac" | "mp3" | "opus" | "pcm-16" | null) => void;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: "aac" | "mp3" | "opus" | "pcm-16";
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
description: () => string;
|
|
docLink: string;
|
|
name: string;
|
|
ssrName: "audioCodec";
|
|
type: "aac" | "mp3" | "opus" | "pcm-16";
|
|
};
|
|
readonly onBrowserDownload: {
|
|
name: string;
|
|
cliFlag: "on-browser-download";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "onBrowserDownload";
|
|
docLink: string;
|
|
type: import("./on-browser-download").OnBrowserDownload;
|
|
getValue: () => never;
|
|
setConfig: () => never;
|
|
};
|
|
readonly hardwareAcceleration: {
|
|
name: string;
|
|
cliFlag: "hardware-acceleration";
|
|
description: () => string;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: "disable" | "if-possible" | "required";
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: "disable" | "if-possible" | "required";
|
|
};
|
|
setConfig: (value: "disable" | "if-possible" | "required") => void;
|
|
};
|
|
readonly chromeMode: {
|
|
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";
|
|
};
|
|
readonly licenseKey: {
|
|
name: string;
|
|
cliFlag: "license-key";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "licenseKey";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
};
|
|
readonly stitchFramesToVideo: {
|
|
readonly separateAudioTo: {
|
|
cliFlag: string;
|
|
description: () => string;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
name: string;
|
|
setConfig: () => never;
|
|
ssrName: string;
|
|
type: string | null;
|
|
};
|
|
readonly hardwareAcceleration: {
|
|
name: string;
|
|
cliFlag: "hardware-acceleration";
|
|
description: () => string;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: "disable" | "if-possible" | "required";
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: "disable" | "if-possible" | "required";
|
|
};
|
|
setConfig: (value: "disable" | "if-possible" | "required") => void;
|
|
};
|
|
};
|
|
readonly renderStill: {
|
|
readonly mediaCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "media-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "mediaCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoThreads: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-video-threads";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoThreads";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly jpegQuality: {
|
|
name: string;
|
|
cliFlag: "jpeg-quality";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: number;
|
|
setConfig: (q: number | undefined) => void;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
};
|
|
readonly logLevel: {
|
|
cliFlag: "log";
|
|
name: string;
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
source: string;
|
|
};
|
|
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
};
|
|
readonly timeoutInMilliseconds: {
|
|
name: string;
|
|
cliFlag: "timeout";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "timeoutInMilliseconds";
|
|
docLink: string;
|
|
type: number;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
setConfig: (value: number) => void;
|
|
};
|
|
readonly binariesDirectory: {
|
|
name: string;
|
|
cliFlag: "binaries-directory";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "binariesDirectory";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
readonly onBrowserDownload: {
|
|
name: string;
|
|
cliFlag: "on-browser-download";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "onBrowserDownload";
|
|
docLink: string;
|
|
type: import("./on-browser-download").OnBrowserDownload;
|
|
getValue: () => never;
|
|
setConfig: () => never;
|
|
};
|
|
readonly chromeMode: {
|
|
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";
|
|
};
|
|
readonly apiKey: {
|
|
name: string;
|
|
cliFlag: "api-key";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "apiKey";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
readonly licenseKey: {
|
|
name: string;
|
|
cliFlag: "license-key";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "licenseKey";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
};
|
|
readonly getCompositions: {
|
|
readonly mediaCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "media-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "mediaCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoThreads: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-video-threads";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoThreads";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly logLevel: {
|
|
cliFlag: "log";
|
|
name: string;
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
source: string;
|
|
};
|
|
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
};
|
|
readonly timeoutInMilliseconds: {
|
|
name: string;
|
|
cliFlag: "timeout";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "timeoutInMilliseconds";
|
|
docLink: string;
|
|
type: number;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
setConfig: (value: number) => void;
|
|
};
|
|
readonly binariesDirectory: {
|
|
name: string;
|
|
cliFlag: "binaries-directory";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "binariesDirectory";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
readonly onBrowserDownload: {
|
|
name: string;
|
|
cliFlag: "on-browser-download";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "onBrowserDownload";
|
|
docLink: string;
|
|
type: import("./on-browser-download").OnBrowserDownload;
|
|
getValue: () => never;
|
|
setConfig: () => never;
|
|
};
|
|
readonly chromeMode: {
|
|
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";
|
|
};
|
|
};
|
|
readonly selectComposition: {
|
|
readonly mediaCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "media-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "mediaCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoThreads: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-video-threads";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoThreads";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly logLevel: {
|
|
cliFlag: "log";
|
|
name: string;
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
source: string;
|
|
};
|
|
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
};
|
|
readonly timeoutInMilliseconds: {
|
|
name: string;
|
|
cliFlag: "timeout";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "timeoutInMilliseconds";
|
|
docLink: string;
|
|
type: number;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
setConfig: (value: number) => void;
|
|
};
|
|
readonly binariesDirectory: {
|
|
name: string;
|
|
cliFlag: "binaries-directory";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "binariesDirectory";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
readonly onBrowserDownload: {
|
|
name: string;
|
|
cliFlag: "on-browser-download";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "onBrowserDownload";
|
|
docLink: string;
|
|
type: import("./on-browser-download").OnBrowserDownload;
|
|
getValue: () => never;
|
|
setConfig: () => never;
|
|
};
|
|
readonly chromeMode: {
|
|
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";
|
|
};
|
|
};
|
|
readonly renderFrames: {
|
|
readonly mediaCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "media-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "mediaCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly forSeamlessAacConcatenation: {
|
|
name: string;
|
|
cliFlag: "for-seamless-aac-concatenation";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: true;
|
|
} | {
|
|
source: string;
|
|
value: false;
|
|
};
|
|
setConfig: (value: boolean) => void;
|
|
ssrName: string;
|
|
type: boolean;
|
|
};
|
|
readonly offthreadVideoCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoThreads: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-video-threads";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoThreads";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly jpegQuality: {
|
|
name: string;
|
|
cliFlag: "jpeg-quality";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: number;
|
|
setConfig: (q: number | undefined) => void;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
};
|
|
readonly logLevel: {
|
|
cliFlag: "log";
|
|
name: string;
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
source: string;
|
|
};
|
|
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
};
|
|
readonly timeoutInMilliseconds: {
|
|
name: string;
|
|
cliFlag: "timeout";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "timeoutInMilliseconds";
|
|
docLink: string;
|
|
type: number;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
setConfig: (value: number) => void;
|
|
};
|
|
readonly binariesDirectory: {
|
|
name: string;
|
|
cliFlag: "binaries-directory";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "binariesDirectory";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
readonly onBrowserDownload: {
|
|
name: string;
|
|
cliFlag: "on-browser-download";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "onBrowserDownload";
|
|
docLink: string;
|
|
type: import("./on-browser-download").OnBrowserDownload;
|
|
getValue: () => never;
|
|
setConfig: () => never;
|
|
};
|
|
readonly chromeMode: {
|
|
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";
|
|
};
|
|
readonly imageSequencePattern: {
|
|
name: string;
|
|
cliFlag: "image-sequence-pattern";
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: null;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: string;
|
|
source: string;
|
|
};
|
|
setConfig: (pattern: string | null) => void;
|
|
};
|
|
};
|
|
readonly renderMediaOnLambda: {
|
|
readonly mediaCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "media-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "mediaCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoThreads: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-video-threads";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoThreads";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly videoBitrate: {
|
|
name: string;
|
|
cliFlag: "video-bitrate";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (bitrate: string | null) => void;
|
|
};
|
|
readonly numberOfGifLoops: {
|
|
name: string;
|
|
cliFlag: "number-of-gif-loops";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "numberOfGifLoops";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: number;
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (newLoop: import("./number-of-gif-loops").NumberOfGifLoops) => void;
|
|
};
|
|
readonly preferLossless: {
|
|
name: string;
|
|
cliFlag: "prefer-lossless";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
type: boolean;
|
|
ssrName: "preferLossless";
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: true;
|
|
source: string;
|
|
} | {
|
|
value: false;
|
|
source: string;
|
|
};
|
|
setConfig: (val: boolean) => void;
|
|
};
|
|
readonly audioBitrate: {
|
|
name: string;
|
|
cliFlag: "audio-bitrate";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: string;
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
readonly deleteAfter: {
|
|
name: string;
|
|
cliFlag: "delete-after";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "deleteAfter";
|
|
docLink: string;
|
|
type: import("./delete-after").DeleteAfter | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: import("./delete-after").DeleteAfter;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (value: import("./delete-after").DeleteAfter | null) => void;
|
|
};
|
|
readonly x264Preset: {
|
|
name: string;
|
|
cliFlag: "x264-preset";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "x264Preset";
|
|
docLink: string;
|
|
type: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow" | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow";
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (profile: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow" | null) => void;
|
|
};
|
|
readonly encodingMaxRate: {
|
|
name: string;
|
|
cliFlag: "max-rate";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "encodingMaxRate";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: string;
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (newMaxRate: string | null) => void;
|
|
};
|
|
readonly encodingBufferSize: {
|
|
name: string;
|
|
cliFlag: "buffer-size";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "encodingBufferSize";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: string;
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (bitrate: string | null) => void;
|
|
};
|
|
readonly colorSpace: {
|
|
name: string;
|
|
cliFlag: "color-space";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
ssrName: string;
|
|
type: "bt2020-ncl" | "bt709" | "default" | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: "bt2020-ncl" | "bt709" | "default";
|
|
};
|
|
setConfig: (value: "bt2020-ncl" | "bt709" | "default" | null) => void;
|
|
};
|
|
readonly muted: {
|
|
name: string;
|
|
cliFlag: "muted";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: boolean;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: boolean;
|
|
};
|
|
setConfig: () => void;
|
|
};
|
|
readonly logLevel: {
|
|
cliFlag: "log";
|
|
name: string;
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
source: string;
|
|
};
|
|
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
};
|
|
readonly timeoutInMilliseconds: {
|
|
name: string;
|
|
cliFlag: "timeout";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "timeoutInMilliseconds";
|
|
docLink: string;
|
|
type: number;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
setConfig: (value: number) => void;
|
|
};
|
|
readonly apiKey: {
|
|
name: string;
|
|
cliFlag: "api-key";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "apiKey";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
readonly licenseKey: {
|
|
name: string;
|
|
cliFlag: "license-key";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "licenseKey";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
};
|
|
readonly renderStillOnLambda: {
|
|
readonly mediaCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "media-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "mediaCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoThreads: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-video-threads";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoThreads";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly jpegQuality: {
|
|
name: string;
|
|
cliFlag: "jpeg-quality";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: number;
|
|
setConfig: (q: number | undefined) => void;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
};
|
|
readonly logLevel: {
|
|
cliFlag: "log";
|
|
name: string;
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
source: string;
|
|
};
|
|
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
};
|
|
readonly deleteAfter: {
|
|
name: string;
|
|
cliFlag: "delete-after";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "deleteAfter";
|
|
docLink: string;
|
|
type: import("./delete-after").DeleteAfter | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: import("./delete-after").DeleteAfter;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (value: import("./delete-after").DeleteAfter | null) => void;
|
|
};
|
|
readonly scale: {
|
|
name: string;
|
|
cliFlag: "scale";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: number;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
setConfig: (scale: number) => void;
|
|
};
|
|
readonly timeoutInMilliseconds: {
|
|
name: string;
|
|
cliFlag: "timeout";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "timeoutInMilliseconds";
|
|
docLink: string;
|
|
type: number;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
setConfig: (value: number) => void;
|
|
};
|
|
readonly apiKey: {
|
|
name: string;
|
|
cliFlag: "api-key";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "apiKey";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
readonly licenseKey: {
|
|
name: string;
|
|
cliFlag: "license-key";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "licenseKey";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
};
|
|
readonly getCompositionsOnLambda: {
|
|
readonly mediaCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "media-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "mediaCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly logLevel: {
|
|
cliFlag: "log";
|
|
name: string;
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
source: string;
|
|
};
|
|
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
};
|
|
readonly timeoutInMilliseconds: {
|
|
name: string;
|
|
cliFlag: "timeout";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "timeoutInMilliseconds";
|
|
docLink: string;
|
|
type: number;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
setConfig: (value: number) => void;
|
|
};
|
|
};
|
|
readonly renderMediaOnCloudRun: {
|
|
readonly mediaCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "media-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "mediaCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoThreads: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-video-threads";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoThreads";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly numberOfGifLoops: {
|
|
name: string;
|
|
cliFlag: "number-of-gif-loops";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "numberOfGifLoops";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: number;
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (newLoop: import("./number-of-gif-loops").NumberOfGifLoops) => void;
|
|
};
|
|
readonly preferLossless: {
|
|
name: string;
|
|
cliFlag: "prefer-lossless";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
type: boolean;
|
|
ssrName: "preferLossless";
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: true;
|
|
source: string;
|
|
} | {
|
|
value: false;
|
|
source: string;
|
|
};
|
|
setConfig: (val: boolean) => void;
|
|
};
|
|
readonly colorSpace: {
|
|
name: string;
|
|
cliFlag: "color-space";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
ssrName: string;
|
|
type: "bt2020-ncl" | "bt709" | "default" | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: "bt2020-ncl" | "bt709" | "default";
|
|
};
|
|
setConfig: (value: "bt2020-ncl" | "bt709" | "default" | null) => void;
|
|
};
|
|
readonly audioBitrate: {
|
|
name: string;
|
|
cliFlag: "audio-bitrate";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: string;
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (value: string | null) => void;
|
|
};
|
|
readonly videoBitrate: {
|
|
name: string;
|
|
cliFlag: "video-bitrate";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: string | null;
|
|
};
|
|
setConfig: (bitrate: string | null) => void;
|
|
};
|
|
readonly x264Preset: {
|
|
name: string;
|
|
cliFlag: "x264-preset";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "x264Preset";
|
|
docLink: string;
|
|
type: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow" | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow";
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (profile: "fast" | "faster" | "medium" | "placebo" | "slow" | "slower" | "superfast" | "ultrafast" | "veryfast" | "veryslow" | null) => void;
|
|
};
|
|
readonly encodingMaxRate: {
|
|
name: string;
|
|
cliFlag: "max-rate";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "encodingMaxRate";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: string;
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (newMaxRate: string | null) => void;
|
|
};
|
|
readonly encodingBufferSize: {
|
|
name: string;
|
|
cliFlag: "buffer-size";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "encodingBufferSize";
|
|
docLink: string;
|
|
type: string | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: string;
|
|
source: string;
|
|
} | {
|
|
value: null;
|
|
source: string;
|
|
};
|
|
setConfig: (bitrate: string | null) => void;
|
|
};
|
|
readonly muted: {
|
|
name: string;
|
|
cliFlag: "muted";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: boolean;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: boolean;
|
|
};
|
|
setConfig: () => void;
|
|
};
|
|
readonly logLevel: {
|
|
cliFlag: "log";
|
|
name: string;
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
source: string;
|
|
};
|
|
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
};
|
|
readonly delayRenderTimeoutInMilliseconds: {
|
|
name: string;
|
|
cliFlag: "timeout";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "timeoutInMilliseconds";
|
|
docLink: string;
|
|
type: number;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
setConfig: (value: number) => void;
|
|
};
|
|
readonly enforceAudioTrack: {
|
|
name: string;
|
|
cliFlag: "enforce-audio-track";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: boolean;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: true;
|
|
} | {
|
|
source: string;
|
|
value: false;
|
|
};
|
|
setConfig: (value: boolean) => void;
|
|
};
|
|
readonly scale: {
|
|
name: string;
|
|
cliFlag: "scale";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: number;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
setConfig: (scale: number) => void;
|
|
};
|
|
readonly crf: {
|
|
name: string;
|
|
cliFlag: "crf";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: number;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: import("..").Crf;
|
|
};
|
|
setConfig: (crf: import("..").Crf) => void;
|
|
};
|
|
readonly jpegQuality: {
|
|
name: string;
|
|
cliFlag: "jpeg-quality";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: number;
|
|
setConfig: (q: number | undefined) => void;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
};
|
|
};
|
|
readonly renderStillOnCloudRun: {
|
|
readonly mediaCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "media-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "mediaCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoCacheSizeInBytes: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-cache-size-in-bytes";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoCacheSizeInBytes";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly offthreadVideoThreads: {
|
|
name: string;
|
|
cliFlag: "offthreadvideo-video-threads";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "offthreadVideoThreads";
|
|
docLink: string;
|
|
type: number | null;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
} | {
|
|
source: string;
|
|
value: null;
|
|
};
|
|
setConfig: (size: number | null) => void;
|
|
};
|
|
readonly logLevel: {
|
|
cliFlag: "log";
|
|
name: string;
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
source: string;
|
|
};
|
|
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
};
|
|
readonly scale: {
|
|
name: string;
|
|
cliFlag: "scale";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: number;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
setConfig: (scale: number) => void;
|
|
};
|
|
readonly jpegQuality: {
|
|
name: string;
|
|
cliFlag: "jpeg-quality";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: string;
|
|
docLink: string;
|
|
type: number;
|
|
setConfig: (q: number | undefined) => void;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
};
|
|
readonly delayRenderTimeoutInMilliseconds: {
|
|
name: string;
|
|
cliFlag: "timeout";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "timeoutInMilliseconds";
|
|
docLink: string;
|
|
type: number;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: number;
|
|
};
|
|
setConfig: (value: number) => void;
|
|
};
|
|
};
|
|
readonly ensureBrowser: {
|
|
readonly logLevel: {
|
|
cliFlag: "log";
|
|
name: string;
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
source: string;
|
|
};
|
|
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
};
|
|
readonly onBrowserDownload: {
|
|
name: string;
|
|
cliFlag: "on-browser-download";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "onBrowserDownload";
|
|
docLink: string;
|
|
type: import("./on-browser-download").OnBrowserDownload;
|
|
getValue: () => never;
|
|
setConfig: () => never;
|
|
};
|
|
readonly chromeMode: {
|
|
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";
|
|
};
|
|
};
|
|
readonly openBrowser: {
|
|
readonly logLevel: {
|
|
cliFlag: "log";
|
|
name: string;
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
source: string;
|
|
};
|
|
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
};
|
|
readonly onBrowserDownload: {
|
|
name: string;
|
|
cliFlag: "on-browser-download";
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
ssrName: "onBrowserDownload";
|
|
docLink: string;
|
|
type: import("./on-browser-download").OnBrowserDownload;
|
|
getValue: () => never;
|
|
setConfig: () => never;
|
|
};
|
|
readonly chromeMode: {
|
|
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";
|
|
};
|
|
};
|
|
readonly deploySiteLambda: {
|
|
readonly logLevel: {
|
|
cliFlag: "log";
|
|
name: string;
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
source: string;
|
|
};
|
|
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
};
|
|
readonly throwIfSiteExists: {
|
|
cliFlag: string;
|
|
description: () => string;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
source: string;
|
|
value: boolean;
|
|
};
|
|
name: string;
|
|
setConfig: () => never;
|
|
ssrName: string;
|
|
type: boolean;
|
|
};
|
|
};
|
|
readonly deploySiteCloudRun: {
|
|
readonly logLevel: {
|
|
cliFlag: "log";
|
|
name: string;
|
|
ssrName: string;
|
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
docLink: string;
|
|
getValue: ({ commandLine }: {
|
|
commandLine: Record<string, unknown>;
|
|
}) => {
|
|
value: "error" | "info" | "trace" | "verbose" | "warn";
|
|
source: string;
|
|
};
|
|
setConfig: (newLogLevel: "error" | "info" | "trace" | "verbose" | "warn") => void;
|
|
type: "error" | "info" | "trace" | "verbose" | "warn";
|
|
};
|
|
};
|
|
};
|