We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3378e6d commit 41dd3faCopy full SHA for 41dd3fa
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