Skip to content

Commit

Permalink
fix: broken typings.d.ts in v4.4.0 (#1503)
Browse files Browse the repository at this point in the history
class declaration is outside the namespace, so it needs to use it as a prefix to access its types.
  • Loading branch information
AviVahl committed Aug 30, 2020
1 parent 7e78213 commit 98ad756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typings.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ declare class HtmlWebpackPlugin {
tagName: string,
attributes?: { [attributeName: string]: string | boolean },
innerHTML?: string
): HtmlTagObject;
): HtmlWebpackPlugin.HtmlTagObject;

static readonly version: number;
}
Expand Down

0 comments on commit 98ad756

Please sign in to comment.