From 91fcfae67f771fcb8e337db89a3d879477dc1593 Mon Sep 17 00:00:00 2001 From: glmdgrielson <32415403+glmdgrielson@users.noreply.github.com> Date: Mon, 5 Feb 2018 09:30:33 -0500 Subject: [PATCH] Made paths property optional I'm making a lot of seemingly duplicate commits here, aren't I? --- types/node/v8/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/node/v8/index.d.ts b/types/node/v8/index.d.ts index d2c9d822ba..fb80321e0c 100644 --- a/types/node/v8/index.d.ts +++ b/types/node/v8/index.d.ts @@ -123,7 +123,7 @@ interface NodeRequire extends NodeRequireFunction { } interface RequireResolve { - (id: string, options?: { paths: string[]; }): string; + (id: string, options?: { paths?: string[]; }): string; paths(request: string): string[] | null; }