Skip to content

Commit

Permalink
Merge branch 'v3-branch' of github.com:humanmade/tachyon into v3-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
joehoyle committed Sep 21, 2023
2 parents ae5bed3 + baa06dc commit 17f1059
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,12 @@ function applyZoomCompression( defaultValue: number, zoom: number ): number {
return clamp( value, min, defaultValue );
}

type ResizeBufferResult = { data: Buffer; info: sharp.OutputInfo & { errors: string } };
type ResizeBufferResult = {
data: Buffer;
info: sharp.OutputInfo & {
errors: string;
}
};

/**
* Resize a buffer of an image.
Expand Down

0 comments on commit 17f1059

Please sign in to comment.