From 3e9c1910b9907320a3231b8f3235c2bcb8d8af91 Mon Sep 17 00:00:00 2001 From: Jackson Kearl Date: Tue, 27 Aug 2019 01:42:23 -0700 Subject: [PATCH] `void` => `undefined` in Path.d.ts (#2134) --- 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; };