Skip to content

Commit 8b7255f

Browse files
MrStLouisjantimon
authored andcommittedJul 16, 2019
fix(typings.d.ts): added apply method type to HtmlWwbpackPlugin class definitoin
#1244
1 parent 5acac51 commit 8b7255f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎typings.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
import { AsyncSeriesWaterfallHook } from "tapable";
2+
import { Compiler } from 'webpack';
23
import { Options as HtmlMinifierOptions } from "html-minifier";
34

45
export = HtmlWebpackPlugin;
56

67
declare class HtmlWebpackPlugin {
78
constructor(options?: HtmlWebpackPlugin.Options);
9+
10+
apply(compiler: Compiler): void;
811
}
912

1013
declare namespace HtmlWebpackPlugin {

0 commit comments

Comments
 (0)
Please sign in to comment.