Commit 69702c4 1 parent 5d2887a commit 69702c4 Copy full SHA for 69702c4
File tree 1 file changed +18
-3
lines changed
1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ type webp = {
96
96
}
97
97
98
98
type avif = {
99
- format : 'avif' ,
99
+ format : 'avif'
100
100
options : {
101
101
quality ?: number
102
102
lossless ?: Boolean
@@ -107,7 +107,7 @@ type avif = {
107
107
}
108
108
109
109
type heif = {
110
- format : 'heif' ,
110
+ format : 'heif'
111
111
options : {
112
112
compression ?: string
113
113
quality ?: number
@@ -139,5 +139,20 @@ export type ConverterOptions = {
139
139
withoutReduction ?: Boolean
140
140
fastShrinkOnLoad ?: Boolean
141
141
}
142
- format ?: 'jpeg' | 'jpg' | 'png' | 'gif' | 'webp' | 'avif' | 'heif' | 'tiff' | 'raw' | jpeg | png | gif | webp | avif | heif
142
+ format ?:
143
+ | 'jpeg'
144
+ | 'jpg'
145
+ | 'png'
146
+ | 'gif'
147
+ | 'webp'
148
+ | 'avif'
149
+ | 'heif'
150
+ | 'tiff'
151
+ | 'raw'
152
+ | jpeg
153
+ | png
154
+ | gif
155
+ | webp
156
+ | avif
157
+ | heif
143
158
}
You can’t perform that action at this time.
0 commit comments