init commit
This commit is contained in:
18
remotion/node_modules/@remotion/renderer/dist/options/hardware-acceleration.d.ts
generated
vendored
Normal file
18
remotion/node_modules/@remotion/renderer/dist/options/hardware-acceleration.d.ts
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
export declare const hardwareAccelerationOptions: readonly ["disable", "if-possible", "required"];
|
||||
export type HardwareAccelerationOption = (typeof hardwareAccelerationOptions)[number];
|
||||
export declare const getHardwareAcceleration: () => "disable" | "if-possible" | "required" | null;
|
||||
export declare const hardwareAccelerationOption: {
|
||||
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;
|
||||
};
|
||||
Reference in New Issue
Block a user