Fix webpack's DllReferencePlugin.Options to allow manifest to be a string to support paths (#18902)

This commit is contained in:
Bijan Vakili
2017-08-14 11:17:21 -07:00
committed by Mohamed Hegazy
parent c2ca879dca
commit 8414ffb817
+1 -1
View File
@@ -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.