Skip to content

Commit

Permalink
TypeScript: chromaSubsampling can be undefined (#4191)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidVaness committed Aug 14, 2024
1 parent 2474bd4 commit ab65b7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,7 @@ declare namespace sharp {
/** Number of pixels per inch (DPI), if present */
density?: number | undefined;
/** String containing JPEG chroma subsampling, 4:2:0 or 4:4:4 for RGB, 4:2:0:4 or 4:4:4:4 for CMYK */
chromaSubsampling: string;
chromaSubsampling?: string | undefined;
/** Boolean indicating whether the image is interlaced using a progressive scan */
isProgressive?: boolean | undefined;
/** Number of pages/frames contained within the image, with support for TIFF, HEIF, PDF, animated GIF and animated WebP */
Expand Down

0 comments on commit ab65b7a

Please sign in to comment.