We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecdd88e commit 2b26c07Copy full SHA for 2b26c07
src/tinify/Source.ts
@@ -7,7 +7,9 @@ import ResultMeta from "./ResultMeta"
7
8
export type SupportedImageTypes = "image/webp"
9
| "image/png"
10
- | "image/jpg";
+ | "image/jpg"
11
+ | "image/jpeg"
12
+ | "image/avif";
13
14
export type WildcardOrSupportedImageTypes = SupportedImageTypes
15
| "*/*"; // The wildcard "*/*" returns the smallest of Tinify's supported image types, currently JPEG, PNG and WebP.
0 commit comments