chore: remove gif from vips
This commit is contained in:
parent
7a59070e91
commit
126e60fec7
2 changed files with 4 additions and 2 deletions
|
|
@ -8,7 +8,7 @@ export const properties = {
|
||||||
images: ["apng", "exr", "gif", "jpeg", "pam", "pfm", "pgm", "pgx", "png", "ppm"],
|
images: ["apng", "exr", "gif", "jpeg", "pam", "pfm", "pgm", "pgx", "png", "ppm"],
|
||||||
},
|
},
|
||||||
to: {
|
to: {
|
||||||
jxl: ["apng", "exr", "gif", "jpeg", "pam", "pfm", "pgm", "pgx", "png", "ppm"],
|
jxl: ["apng", "exr", "jpeg", "pam", "pfm", "pgm", "pgx", "png", "ppm"],
|
||||||
images: ["jxl"],
|
images: ["jxl"],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,10 @@
|
||||||
|
import { ExecFileOptions } from "child_process";
|
||||||
|
|
||||||
export type ExecFileFn = (
|
export type ExecFileFn = (
|
||||||
cmd: string,
|
cmd: string,
|
||||||
args: string[],
|
args: string[],
|
||||||
callback: (err: Error | null, stdout: string, stderr: string) => void,
|
callback: (err: Error | null, stdout: string, stderr: string) => void,
|
||||||
options?: import("child_process").ExecFileOptions,
|
options?: ExecFileOptions,
|
||||||
) => void;
|
) => void;
|
||||||
|
|
||||||
export type ConvertFnWithExecFile = (
|
export type ConvertFnWithExecFile = (
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue