From 7a8307443a4792eebd4ccf7675e8afc99e822a11 Mon Sep 17 00:00:00 2001 From: Randy Tarampi Date: Tue, 28 Apr 2020 19:31:15 +0200 Subject: [PATCH] chore(typings): Add typings for `JpegBufferParams.progressive` per https://github.com/randytarampi/lwip/pull/31 and https://github.com/EyalAr/lwip/pull/245. --- typings.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typings.d.ts b/typings.d.ts index 3411867d..08a332eb 100644 --- a/typings.d.ts +++ b/typings.d.ts @@ -55,6 +55,7 @@ export function create(width: number, height: number, color: Color, callback: Im export type JpegBufferParams = { quality?: number; + progressive ?: boolean; }; export type PngBufferParams = {