From 68b08dcd2d1e198c6cc58a9d203643a90ada5d7e Mon Sep 17 00:00:00 2001 From: Ismail Syed Date: Mon, 7 Aug 2017 22:27:42 -0400 Subject: [PATCH] Add namedResolver function params and return type --- types/webpack/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/webpack/index.d.ts b/types/webpack/index.d.ts index 1511f49791..a5f92d8e9e 100644 --- a/types/webpack/index.d.ts +++ b/types/webpack/index.d.ts @@ -849,7 +849,7 @@ declare namespace webpack { } class NamedChunksPlugin extends Plugin { - constructor(nameResolver: any); + constructor(nameResolver: (chunk: {}) => string | null ); } class NoEmitOnErrorsPlugin extends Plugin {