From 81dbb28bafbd7e9e093cdca26e1f2c0542ec0878 Mon Sep 17 00:00:00 2001 From: Jackson Kearl Date: Mon, 26 Aug 2019 11:25:39 -0700 Subject: [PATCH] `void` => `undefined` in Path.d.ts --- tstypes/jsutils/Path.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tstypes/jsutils/Path.d.ts b/tstypes/jsutils/Path.d.ts index c53422820d..ef8f10a510 100644 --- a/tstypes/jsutils/Path.d.ts +++ b/tstypes/jsutils/Path.d.ts @@ -1,5 +1,5 @@ export type Path = { - prev: Path | void; + prev: Path | undefined; key: string | number; };