Fix test failures

This commit is contained in:
Andy Hanson
2016-12-28 14:06:07 -08:00
parent 2e869dbdc0
commit 71cdea320d
8 changed files with 9 additions and 1 deletions

View File

@@ -3,13 +3,14 @@
// Definitions by: Simon Hartcher <https://github.com/deevus>, Benjamin Lim <https://github.com/bumbleblym>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import { Plugin } from "webpack";
import { Plugin, Webpack } from "webpack";
import { Options } from "html-minifier";
export = HtmlWebpackPlugin;
declare class HtmlWebpackPlugin implements Plugin {
constructor(options?: HtmlWebpackPlugin.Config);
apply(thisArg: Webpack, ...args: any[]): void;
}
declare namespace HtmlWebpackPlugin {