From cd3d017bba51d483aa1e6fc62ca7979d21680d7b Mon Sep 17 00:00:00 2001 From: Oleg Repin Date: Wed, 22 Nov 2017 20:53:13 +0300 Subject: [PATCH] [pixelmatch] Pixelmatch's `options` argument fix --- types/pixelmatch/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/pixelmatch/index.d.ts b/types/pixelmatch/index.d.ts index ae1e1edbab..0a2e4277ac 100644 --- a/types/pixelmatch/index.d.ts +++ b/types/pixelmatch/index.d.ts @@ -17,7 +17,7 @@ declare function Pixelmatch( /** Height of the images. Note that all three images need to have the same dimensions. */ height: number, /** Options. */ - options: Options | undefined + options?: Options, ): number; interface Options {