Skip to content

Commit 98ad756

Browse files
authoredAug 30, 2020
fix: broken typings.d.ts in v4.4.0 (#1503)
class declaration is outside the namespace, so it needs to use it as a prefix to access its types.
1 parent 7e78213 commit 98ad756

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎typings.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ declare class HtmlWebpackPlugin {
1818
tagName: string,
1919
attributes?: { [attributeName: string]: string | boolean },
2020
innerHTML?: string
21-
): HtmlTagObject;
21+
): HtmlWebpackPlugin.HtmlTagObject;
2222

2323
static readonly version: number;
2424
}

0 commit comments

Comments
 (0)
Please sign in to comment.