From 8414ffb817aa62d5fa7c46fc67cc689a211066f2 Mon Sep 17 00:00:00 2001 From: Bijan Vakili Date: Mon, 14 Aug 2017 11:17:21 -0700 Subject: [PATCH] Fix webpack's DllReferencePlugin.Options to allow manifest to be a string to support paths (#18902) --- 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 e90ad0b13b..432ba822a4 100644 --- a/types/webpack/index.d.ts +++ b/types/webpack/index.d.ts @@ -783,7 +783,7 @@ declare namespace webpack { /** * An object containing `content` and `name`. */ - manifest: { content: string, name: string }; + manifest: { content: string, name: string } | string; /** * The name where the DLL is exposed.